All checks were successful
Deploy / deploy (push) Successful in 12s
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
28 lines
673 B
YAML
28 lines
673 B
YAML
services:
|
|
app:
|
|
build: .
|
|
container_name: kolaytercih
|
|
restart: unless-stopped
|
|
volumes:
|
|
- app-data:/app/data
|
|
env_file:
|
|
- .env.production
|
|
environment:
|
|
- APP_DB_URL=file:/app/data/app.db
|
|
networks:
|
|
- traefik
|
|
labels:
|
|
- traefik.enable=true
|
|
- traefik.docker.network=traefik
|
|
- traefik.http.routers.kolaytercih.rule=Host(`kolaytercih.com`)
|
|
- traefik.http.routers.kolaytercih.entrypoints=websecure
|
|
- traefik.http.routers.kolaytercih.tls.certresolver=letsencrypt
|
|
- traefik.http.services.kolaytercih.loadbalancer.server.port=3000
|
|
|
|
networks:
|
|
traefik:
|
|
external: true
|
|
|
|
volumes:
|
|
app-data:
|