-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.prod.yml
More file actions
23 lines (22 loc) · 1.21 KB
/
Copy pathdocker-compose.prod.yml
File metadata and controls
23 lines (22 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
services:
client-github-challenge-component:
image: ghcr.io/prompt-edu/prompt-github-challenge/prompt-clients-github-challenge-component:${CLIENT_IMAGE_TAG}
container_name: client-github-challenge-component
restart: unless-stopped
networks:
- prompt-network
labels:
- "traefik.enable=true"
- "traefik.http.routers.github-challenge-standalone.rule=Host(`${CORE_HOST}`) && PathPrefix(`/github-challenge`)"
- "traefik.http.routers.github-challenge-standalone.entrypoints=websecure"
- "traefik.http.routers.github-challenge-standalone.priority=200"
- "traefik.http.routers.github-challenge-standalone.tls.certresolver=letsencrypt"
- "traefik.http.middlewares.github-challenge-standalone-strip.stripprefix.prefixes=/github-challenge"
- "traefik.http.middlewares.github-challenge-standalone-compress.compress=true"
- "traefik.http.routers.github-challenge-standalone.middlewares=github-challenge-standalone-strip@docker,github-challenge-standalone-compress@docker"
- "traefik.http.services.github-challenge-standalone.loadbalancer.server.port=80"
- "traefik.docker.network=prompt-network"
networks:
prompt-network:
name: prompt-network
external: true