19 lines
527 B
YAML
19 lines
527 B
YAML
services:
|
|
skeleton-app:
|
|
image: git.ludops.com/ludops/ludops-skeleton:latest
|
|
container_name: ludops-skeleton-app
|
|
restart: always
|
|
environment:
|
|
- NODE_ENV=production
|
|
- PORT=3000
|
|
# We point to the shared DB we set up earlier
|
|
- DATABASE_URL=postgres://gitea:gitea@ludops-postgres:5432/skeleton_db
|
|
networks:
|
|
- proxy-tier # For NPM to find us
|
|
- infra-network # For us to find the Postgres DB
|
|
|
|
networks:
|
|
proxy-tier:
|
|
external: true
|
|
infra-network:
|
|
external: true |