23 lines
639 B
YAML
23 lines
639 B
YAML
services:
|
|
grown:
|
|
image: git.klemp.dev/tobi/grown:latest
|
|
container_name: grown
|
|
restart: unless-stopped
|
|
environment:
|
|
- NODE_ENV=production
|
|
volumes:
|
|
- /volume1/docker/grown/keimli2/:/app/timelapse/
|
|
networks:
|
|
- traefik-proxy
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- traefik.docker.network=traefik-proxy
|
|
- "traefik.http.routers.grown.rule=Host(`keimli.klemp.local`)"
|
|
- "traefik.http.routers.grown.entrypoints=http"
|
|
- "traefik.http.services.grown.loadbalancer.server.port=3000"
|
|
- traefik.http.routers.grown.service=grown
|
|
|
|
networks:
|
|
traefik-proxy:
|
|
external: true
|