You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
393 B
19 lines
393 B
version: '2'
|
|
|
|
services:
|
|
wetty:
|
|
image: wettyoss/wetty
|
|
command:
|
|
- --base=/
|
|
- --ssh-host=ssh.example.com
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.wetty.rule=Host(`wetty.example.com`)"
|
|
|
|
reverse-proxy:
|
|
image: traefik
|
|
command: --providers.docker
|
|
ports:
|
|
- "80:80"
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
|