This commit is contained in:
RoyceDa
2026-02-02 02:37:28 +02:00
parent 6d74d6b6f2
commit 2ba7989207
5 changed files with 112 additions and 2 deletions

23
docker-compose.dev.yml Normal file
View File

@@ -0,0 +1,23 @@
version: '3.8'
services:
app:
build: .
ports:
- "8881:8881"
depends_on:
- db
db:
image: postgres:latest
environment:
POSTGRES_DB: your_database
POSTGRES_USER: your_user
POSTGRES_PASSWORD: your_password
ports:
- "5432:5432"
adminer:
image: adminer
ports:
- "8080:8080"