added nginx #1

Merged
sanjib merged 3 commits from dev into main 2025-02-19 05:27:48 +00:00
Showing only changes of commit 53d2c7b46a - Show all commits

View file

@ -3,8 +3,8 @@ services:
build:
context: .
dockerfile: Dockerfile
ports:
- "${SERVER_PORT}:${SERVER_PORT}"
# ports:
# - "${SERVER_PORT}:${SERVER_PORT}"
depends_on:
db:
condition: service_healthy
@ -20,8 +20,8 @@ services:
POSTGRES_USER: ${DB_USER}
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_DB: ${DB_NAME}
ports:
- "${DB_PORT}:5432"
# ports:
# - "${DB_PORT}:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
@ -33,9 +33,9 @@ services:
minio:
image: minio/minio:latest
ports:
- "9000:9000"
- "9001:9001"
# ports:
# - "9000:9000"
# - "9001:9001"
environment:
MINIO_ROOT_USER: ${MINIO_ROOT_USER}
MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD}