-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nginx-proxy solution isn't working at all #2
Comments
This could be an alternative https://www.linuxserver.io/2018/02/03/using-traefik-as-a-reverse-proxy-with-docker/ |
I stumbled on your repo searching for inspiration. Nice setup, helped me a lot. Tried traefik, here's a minimal docker-compose that works for me. version: '3.5'
services:
traefik:
image: traefik
container_name: traefik
restart: unless-stopped
command: --web --docker --docker.domain=localhost
ports:
- 8080:8080
- 80:80
networks:
- aresnet
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /dev/null:/traefik.toml
labels:
- "traefik.backend=traefik"
- "traefik.frontend.rule=Host:traefik.localhost"
- "traefik.port=8080"
emby:
image: emby/embyserver
container_name: emby
restart: unless-stopped
networks:
- aresnet
volumes:
- /etc/localtime:/etc/localtime:ro
- $HOME/.config/embyserver:/config
- /media/media/:/media
environment:
- AUTO_UPDATES_ON=true
- UID=1000
- GID=1000
labels:
- "traefik.backend=emby"
- "traefik.frontend.rule=Host:emby.localhost"
- "traefik.port=8096"
networks:
aresnet:
name: aresnet
driver: bridge You should then be able to visit Traefik using |
Awesome! Thank you so much! Can you help me creating a PR? 👍 |
Another working example using traefik https://github.com/jfroment/seedbox |
No description provided.
The text was updated successfully, but these errors were encountered: