Updated docker-compose

niggo 2024-03-13 08:47:01 +00:00
parent 8793359e2b
commit 8261548533
1 changed files with 10 additions and 5 deletions

@ -8,12 +8,12 @@ Der App container wird der Container der die eigentliche App sowie den Webserver
## Compose
`docker-compose.yaml`
```Dockerfile
```yaml
name: dwldash
services:
postgres:
volumes:
- /var/run/dwldash/docker/postgres:/var/lib/postgres
- dwldashdb:/var/lib/postgres
restart: no
environment:
POSTGRES_PASSWORD: bQnroQrK9uUrq7
@ -24,5 +24,10 @@ services:
restart: no
environment:
DATABASE_URL: postgres://postgres:bQnroQrK9uUrq7@postgres:5432/DWL
image: postgres
PORT: 3000
image: git.ipmake.me/bkrheine/dwldashboard:latest
ports:
- "3000:3000"
volumes:
dwldashdb:
```