fixed bug

This commit is contained in:
AmirHossein Mahmoodi
2025-05-05 09:20:01 +03:30
parent 851758be6b
commit 266169c524
7 changed files with 185 additions and 13 deletions

View File

@@ -16,10 +16,13 @@ services:
- DB_SSL=${DB_SSL}
- DB_SYNC=${DB_SYNC}
- PORT=${PORT}
- REDIS_HOST=${REDIS_HOST}
- REDIS_PORT=${REDIS_PORT}
ports:
- '3023:3023'
- '3023:${PORT}'
depends_on:
- db
- redis
restart: unless-stopped
db:
@@ -34,6 +37,13 @@ services:
ports:
- '5432:5432'
restart: unless-stopped
redis:
image: redis:7.0-alpine
container_name: redis
ports:
- '6379:6379'
restart: unless-stopped
volumes:
pgdata: