Skip to content
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

Open
inakiabt opened this issue Apr 5, 2017 · 4 comments
Open

Nginx-proxy solution isn't working at all #2

inakiabt opened this issue Apr 5, 2017 · 4 comments
Labels

Comments

@inakiabt
Copy link
Owner

inakiabt commented Apr 5, 2017

No description provided.

@inakiabt inakiabt added the bug label Apr 5, 2017
@inakiabt
Copy link
Owner Author

inakiabt commented Feb 4, 2018

@hschne
Copy link

hschne commented Feb 21, 2018

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 ltraefik.localhost and Emby using emby.localhost.

@inakiabt
Copy link
Owner Author

Awesome! Thank you so much!

Can you help me creating a PR? 👍

@inakiabt
Copy link
Owner Author

inakiabt commented Jul 1, 2018

Another working example using traefik https://github.com/jfroment/seedbox

Repository owner deleted a comment from Arpitkandwal Feb 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants
@inakiabt @hschne and others