Setup docker-compose file

This commit is contained in:
2026-06-29 14:45:05 +05:30
parent fdfd5b54f8
commit 22f300474f

View File

@@ -0,0 +1,20 @@
version: '3.8'
services:
db:
image: postgres:16-alpine
container_name: alemno_db
ports:
- "5432:5432"
web:
build: .
container_name: alemno_web
ports:
- "3000:3000"
volumes:
- .:/app
depends_on:
db:
condition: service_healthy
volumes:
postgres_data: