18 lines
379 B
YAML
18 lines
379 B
YAML
services:
|
|
admin:
|
|
build: .
|
|
container_name: wherewoof-admin
|
|
working_dir: /app
|
|
volumes:
|
|
- ./app:/app
|
|
ports:
|
|
- "3030:3030"
|
|
environment:
|
|
- DB_CONNECTION=pgsql
|
|
- DB_HOST=192.168.20.13
|
|
- DB_PORT=5434
|
|
- DB_DATABASE=wherewoof
|
|
- DB_USERNAME=wherewoof
|
|
- DB_PASSWORD=ww_dev_2026
|
|
- APP_URL=http://localhost:3030
|