dwldashboard/docker-compose.yaml

21 lines
547 B
YAML

name: dwldash
services:
postgres:
volumes:
- dwldashdb:/var/lib/postgres
restart: no
environment:
POSTGRES_PASSWORD: bQnroQrK9uUrq7
image: postgres
app:
volumes:
- /var/run/dwldash/docker/data:/dwldash
restart: no
environment:
DATABASE_URL: postgres://postgres:bQnroQrK9uUrq7@postgres:5432/DWL
PORT: 3000
image: git.ipmake.me/bkrheine/dwldashboard:latest
ports:
- "3000:3000"
volumes:
dwldashdb: