Skip to content
Open
Show file tree
Hide file tree
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
12 changes: 6 additions & 6 deletions docker-compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ services:
- /etc/localtime:/etc/localtime:ro
env_file:
- .env.prod
ports:
- 5432:5432
expose:
- 5432

worker:
build: ./backend
Expand All @@ -71,17 +71,17 @@ services:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
image: redis:7.2.4-bookworm
ports:
- 6379:6379
expose:
- 6379

minio:
image: minio/minio:latest
container_name: minio
volumes:
- minio_data:/data
expose:
- "9000"
- "9001"
- 9000
- 9001
env_file:
- .env.prod
command: server /data --console-address ":9001"
Expand Down
9 changes: 4 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ services:
image: nginx:latest
restart: "on-failure"
ports:
- "443:443"
- "80:80"
- "9000:9000"
- "9001:9001"
Expand Down Expand Up @@ -71,17 +70,17 @@ services:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
image: redis:7.2.4-bookworm
ports:
- 6379:6379
expose:
- 6379

minio:
image: minio/minio:latest
container_name: minio
volumes:
- minio_data:/data
expose:
- "9000"
- "9001"
- 9000
- 9001
env_file:
- .env
command: server /data --console-address ":9001"
Expand Down