17 lines
367 B
YAML
17 lines
367 B
YAML
services:
|
|
app:
|
|
build: .
|
|
ports:
|
|
- "8080:8080"
|
|
environment:
|
|
- ENVIRONMENT=development
|
|
- LOG_VOLUME=${LOG_VOLUME:-counter_logs}
|
|
env_file:
|
|
- .env.development
|
|
depends_on:
|
|
postgres:
|
|
condition: service_healthy
|
|
volumes:
|
|
- ./frontend/build:/app/frontend/build
|
|
- ${LOG_VOLUME:-counter_logs}:/app/logs
|