Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 8 additions & 12 deletions docker-compose-internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,17 @@ services:
# Speckle Server dependencies
#######
postgres:
image: "postgres:16.4-alpine3.20@sha256:d898b0b78a2627cb4ee63464a14efc9d296884f1b28c841b0ab7d7c42f1fffdf"
image: 'postgres:18.3-alpine3.23@sha256:54451ecb8ab38c24c3ec123f2fd501303a3a1856a5c66e98cecf2460d5e1e9d7'
restart: always
environment:
POSTGRES_DB: speckle
POSTGRES_USER: speckle
POSTGRES_PASSWORD: speckle
volumes:
- ./.volumes/postgres-data:/var/lib/postgresql/data/
healthcheck:
# the -U user has to match the POSTGRES_USER value
test: ["CMD-SHELL", "pg_isready -U speckle"]
interval: 5s
timeout: 5s
retries: 30
- ./.volumes/postgres-data:/var/lib/postgresql
- ./setup/db/10-docker_postgres_init.sql:/docker-entrypoint-initdb.d/10-docker_postgres_init.sql
- ./setup/db/11-docker_postgres_authentik_init.sql:/docker-entrypoint-initdb.d/11-docker_postgres_authentik_init.sql
command: postgres -c max_prepared_transactions=150

redis:
image: "valkey/valkey:8.1-alpine@sha256:0d27f0bca0249f61d060029a6aaf2e16b2c417d68d02a508e1dfb763fa2948b4"
Expand All @@ -32,7 +29,7 @@ services:
retries: 30

minio:
image: "minio/minio:RELEASE.2023-10-25T06-33-25Z"
image: "minio/minio:RELEASE.2025-09-07T16-13-09Z"
command: server /data --console-address ":9001"
restart: always
volumes:
Expand Down Expand Up @@ -68,7 +65,7 @@ services:
- "0.0.0.0:3000:3000"
depends_on:
postgres:
condition: service_healthy
condition: service_started
redis:
condition: service_healthy
minio:
Expand Down Expand Up @@ -102,8 +99,7 @@ services:

LOG_PRETTY: "true"

FF_NEXT_GEN_FILE_IMPORTER_ENABLED: "true"
FF_LARGE_FILE_IMPORTS_ENABLED: "true"
FF_DATA_MODULE_ENABLED: 'true'

networks:
default:
Expand Down
Loading