valley-commons/docker-compose.yml

45 lines
1.2 KiB
YAML

services:
votc:
build: .
container_name: votc
restart: unless-stopped
environment:
- INFISICAL_CLIENT_ID=${INFISICAL_CLIENT_ID}
- INFISICAL_CLIENT_SECRET=${INFISICAL_CLIENT_SECRET}
- INFISICAL_PROJECT_SLUG=valley-commons
depends_on:
votc-db:
condition: service_healthy
labels:
- "traefik.enable=true"
- "traefik.http.routers.votc.rule=Host(`valleyofthecommons.com`) || Host(`www.valleyofthecommons.com`) || Host(`votc.jeffemmett.com`)"
- "traefik.http.services.votc.loadbalancer.server.port=3000"
networks:
- traefik-public
votc-db:
image: postgres:16-alpine
container_name: votc-db
restart: unless-stopped
environment:
- POSTGRES_USER=votc
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=votc
volumes:
- votc-postgres-data:/var/lib/postgresql/data
- ./db/schema.sql:/docker-entrypoint-initdb.d/01-schema.sql:ro
healthcheck:
test: ["CMD-SHELL", "pg_isready -U votc"]
interval: 5s
timeout: 5s
retries: 5
networks:
- traefik-public
volumes:
votc-postgres-data:
networks:
traefik-public:
external: true