ludops-skeleton/docker-compose.prod.yml

19 lines
542 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
- indrastructure_infra-network # For us to find the Postgres DB
networks:
proxy-tier:
external: true
infra-network:
external: true