generated from hackariens/github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-lampy.yml
39 lines (38 loc) · 1.35 KB
/
docker-compose-lampy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
version: "3.4"
networks:
proxylampy:
external: true
services:
build:
networks:
- proxylampy
- net
deploy:
labels:
- "traefik.enable=true"
- "traefik.http.routers.build-repocheck.rule=Host(`repocheck.traefik.me`) && PathPrefix(`/build`)"
- "traefik.http.routers.build-repocheck-tls.tls.domains[0].main=repocheck.traefik.me"
- "traefik.http.routers.build-repocheck.tls=true"
- "traefik.http.services.build-repocheck.loadbalancer.server.port=80"
front:
networks:
- proxylampy
- net
deploy:
labels:
- "traefik.enable=true"
- "traefik.http.routers.front-repocheck.rule=Host(`repocheck.traefik.me`)"
- "traefik.http.routers.front-repocheck-tls.tls.domains[0].main=repocheck.traefik.me"
- "traefik.http.routers.front-repocheck.tls=true"
- "traefik.http.services.front-repocheck.loadbalancer.server.port=80"
back:
networks:
- proxylampy
- net
deploy:
labels:
- "traefik.enable=true"
- "traefik.http.routers.back-repocheck.rule=Host(`repocheck.traefik.me`) && PathPrefix(`/back`)"
- "traefik.http.routers.back-repocheck-tls.tls.domains[0].main=repocheck.traefik.me"
- "traefik.http.routers.back-repocheck.tls=true"
- "traefik.http.services.back-repocheck.loadbalancer.server.port=3000"