first commit

This commit is contained in:
AntonP8O 2024-02-20 20:47:55 +10:00
commit d49395d0bd

24
docker-compose.yml Normal file
View File

@ -0,0 +1,24 @@
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