24 lines
703 B
YAML
24 lines
703 B
YAML
version: "3.9"
|
|
services:
|
|
remotely:
|
|
image: immybot/remotely:latest
|
|
container_name: remotely
|
|
# ports:
|
|
# - 5000:5000
|
|
volumes:
|
|
- /var/www/remotely:/remotely-data
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.remotely.rule=Host(`remotely.p8o.ru`)"
|
|
- "traefik.http.routers.remotely.service=remotely"
|
|
- "traefik.http.routers.remotely.entrypoints=https"
|
|
- "traefik.http.services.remotely.loadbalancer.server.port=5000"
|
|
- "traefik.http.routers.remotely.tls=true"
|
|
- "traefik.http.routers.remotely.tls.certresolver=regru"
|
|
networks:
|
|
- webproxy
|
|
expose:
|
|
- 5000
|
|
networks:
|
|
webproxy:
|
|
external: true |