summaryrefslogtreecommitdiff
path: root/Applications/Games/tuxeclicker/docker-compose.yml
blob: f7af866636f6b29130901ce9f3a8fc192ce642eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
version: "3"

services:
  tuxeclicker:
    image: nginx:alpine
    restart: unless-stopped
    volumes:
      - "./files:/usr/share/nginx/html:ro"
    networks:
      - "traefik"
    labels:
      - "traefik.enable=true"
      - "traefik.http.routers.games-tuxeclicker.rule=Host(`${DOMAIN}`)"
      - "traefik.http.routers.games-tuxeclicker.entrypoints=websecure"
      - "traefik.http.routers.games-tuxeclicker.tls.certresolver=letsencrypt"

networks:
  traefik:
    name: "${TRAEFIK_NETWORK}"
    external: true