finances/docker/finances-prod/docker-compose.yaml

76 lines
2.1 KiB
YAML

services:
app-migrations:
container_name: next_finances_migrations
image: markusthielker/next-finances:latest
env_file:
- .env
depends_on:
postgres:
condition: service_healthy
command: [ "npx", "prisma", "migrate", "deploy" ]
networks:
- internal
app:
container_name: next_finances_app
image: markusthielker/next-finances:latest
env_file:
- .env
depends_on:
app-migrations:
condition: service_completed_successfully
restart: unless-stopped
labels:
- "traefik.enable=true"
- "traefik.http.routers.xyz-next-finances.rule=Host(`finances.thielker.xyz`)"
- "traefik.http.routers.xyz-next-finances.entrypoints=web, websecure"
- "traefik.http.routers.xyz-next-finances.tls=true"
- "traefik.http.routers.xyz-next-finances.tls.certresolver=lets-encrypt"
networks:
- web
- internal
app-studio:
container_name: next_finances_studio
image: markusthielker/next-finances:latest
env_file:
- .env
depends_on:
app-migrations:
condition: service_completed_successfully
command: "npx prisma studio"
restart: unless-stopped
labels:
- "traefik.enable=true"
- "traefik.http.routers.xyz-next-finances-studio.rule=Host(`studio.finances.thielker.xyz`)"
- "traefik.http.routers.xyz-next-finances-studio.entrypoints=web, websecure"
- "traefik.http.services.xyz-next-finances-studio.loadbalancer.server.port=5555"
- "traefik.http.routers.xyz-next-finances-studio.tls=true"
- "traefik.http.routers.xyz-next-finances-studio.tls.certresolver=lets-encrypt"
networks:
- web
- internal
postgres:
container_name: next_finances_postgres
image: postgres:15.2
restart: unless-stopped
healthcheck:
test: [ "CMD-SHELL", "pg_isready" ]
interval: 10s
timeout: 5s
retries: 5
environment:
POSTGRES_USER: prisma
POSTGRES_PASSWORD: prisma
POSTGRES_DB: finances
volumes:
- ./postgres-data:/var/lib/postgresql/data
networks:
- internal
networks:
web:
external: true
internal: