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.
21 lines
506 B
YAML
21 lines
506 B
YAML
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"
|