| 123456789101112131415161718192021222324252627282930 |
- services:
- resticinfo:
- image: resticinfo
- container_name: resticinfo
- build:
- context: .
- dockerfile: Dockerfile
- network: host
- restart: always
- environment:
- - PUID=1000
- - PGID=1000
- - TZ=${TZ:-Europe/Berlin}
- volumes:
- - /var/lib/restic:/tmp
- ports:
- - 5005:5005
- dns:
- - "9.9.9.9"
- labels:
- - "traefik.enable=true"
- - "traefik.http.services.resticinfo.loadbalancer.server.port=5005"
- - "traefik.http.routers.resticinfo.rule=Host(`resticinfo.local`)"
- - "traefik.http.routers.resticinfo.entrypoints=web"
- networks:
- - proxy
- networks:
- proxy:
- external: true
|