app-store/apps/glances/docker-compose.yml

32 lines
1.3 KiB
YAML

version: "3.7"
services:
glances:
container_name: glances
restart: unless-stopped
ports:
- ${APP_PORT}:61208
environment:
- TZ=${TZ}
- GLANCES_OPT=-w
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
pid: host
image: nicolargo/glances:3.4.0.5-full
networks:
- tipi_main_network
labels:
# Main
traefik.enable: true
traefik.http.middlewares.glances-web-redirect.redirectscheme.scheme: https
traefik.http.services.glances.loadbalancer.server.port: 61208
# Local domain
traefik.http.routers.glances-local-insecure.rule: Host(`glances.${LOCAL_DOMAIN}`)
traefik.http.routers.glances-local-insecure.entrypoints: web
traefik.http.routers.glances-local-insecure.service: glances
traefik.http.routers.glances-local-insecure.middlewares: glances-web-redirect
# Local domain secure
traefik.http.routers.glances-local.rule: Host(`glances.${LOCAL_DOMAIN}`)
traefik.http.routers.glances-local.entrypoints: websecure
traefik.http.routers.glances-local.service: glances
traefik.http.routers.glances-local.tls: true