mirror of
https://github.com/sortedcord/alemno-payments.git
synced 2026-07-22 04:02:49 +05:30
21 lines
320 B
YAML
21 lines
320 B
YAML
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:
|