compose.yml
· 630 B · YAML
Surowy
services:
cup:
image: ghcr.io/sergi0g/cup
container_name: cup
command: -c /config/cup.json serve -p 8000
init: true
volumes:
- /var/run/docker.sock:/var/run/docker.sock
restart: unless-stopped
networks:
- proxy
labels:
- traefik.enable=true
- traefik.http.services.cup.loadbalancer.server.port=8000
- traefik.http.routers.cup.entrypoints=https
- traefik.http.routers.cup.rule=Host(`cup.tuservidor.es`)
- traefik.http.routers.cup.middlewares=oidc-auth@file
networks:
proxy:
external: true
x-dockge:
urls:
- https://cup.tuservidor.es
| 1 | services: |
| 2 | cup: |
| 3 | image: ghcr.io/sergi0g/cup |
| 4 | container_name: cup |
| 5 | command: -c /config/cup.json serve -p 8000 |
| 6 | init: true |
| 7 | volumes: |
| 8 | - /var/run/docker.sock:/var/run/docker.sock |
| 9 | restart: unless-stopped |
| 10 | networks: |
| 11 | - proxy |
| 12 | labels: |
| 13 | - traefik.enable=true |
| 14 | - traefik.http.services.cup.loadbalancer.server.port=8000 |
| 15 | - traefik.http.routers.cup.entrypoints=https |
| 16 | - traefik.http.routers.cup.rule=Host(`cup.tuservidor.es`) |
| 17 | - traefik.http.routers.cup.middlewares=oidc-auth@file |
| 18 | networks: |
| 19 | proxy: |
| 20 | external: true |
| 21 | |
| 22 | x-dockge: |
| 23 | urls: |
| 24 | - https://cup.tuservidor.es |
| 25 | |
| 26 |