You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
537 B
YAML
23 lines
537 B
YAML
2 years ago
|
version: '3'
|
||
|
|
||
|
networks:
|
||
|
web:
|
||
|
external: true
|
||
|
|
||
|
services:
|
||
|
frontend:
|
||
|
image: docker.cybre.town/adb/adb.sh
|
||
|
build:
|
||
|
dockerfile: ./Dockerfile
|
||
|
context: ./
|
||
|
labels:
|
||
|
- "traefik.enable=true"
|
||
|
|
||
|
- "traefik.http.routers.adb-sh.rule=Host(`adb.sh`)"
|
||
|
- "traefik.http.routers.adb-sh.entrypoints=https"
|
||
|
- "traefik.http.services.adb-sh.loadbalancer.server.port=8080"
|
||
|
- "traefik.http.routers.adb-sh.tls.certresolver=mytlschallenge"
|
||
|
- "traefik.docker.network=web"
|
||
|
ports:
|
||
|
- "9000:8080"
|