ignore ssl

This commit is contained in:
Ryan 2025-04-20 19:02:32 +10:00
parent a0bddc7dbe
commit 20e1788b29

View File

@ -41,7 +41,7 @@ services:
restart: unless-stopped
environment:
# Core DB / cache
DATABASE_URL: postgres://postgres:${POSTGRES_PASSWORD}@postgres:5432/postgres?sslmode=disable
DATABASE_URL: postgres://postgres:${POSTGRES_PASSWORD}@postgres:5432/postgres?ssl_mode=disable
REDIS_URL: redis://default:${REDIS_PASSWORD}@redis:6379/0
# S3 (MinIO) storage
S3_ENDPOINT: http://minio:9000
@ -73,7 +73,7 @@ services:
depends_on: [postgres, redis, medusa-server]
restart: unless-stopped
environment:
DATABASE_URL: postgres://postgres:${POSTGRES_PASSWORD}@postgres:5432/postgres?sslmode=disable
DATABASE_URL: postgres://postgres:${POSTGRES_PASSWORD}@postgres:5432/postgres?ssl_mode=disable
REDIS_URL: redis://default:${REDIS_PASSWORD}@redis:6379/0
S3_ENDPOINT: http://minio:9000
S3_REGION: ${S3_REGION:-us-east-1}