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

Reference Docker install #Help #Question #256

Closed
ldexterldesign opened this issue Nov 5, 2020 · 4 comments
Closed

Reference Docker install #Help #Question #256

ldexterldesign opened this issue Nov 5, 2020 · 4 comments

Comments

@ldexterldesign
Copy link

ldexterldesign commented Nov 5, 2020

Hi!

Thanks for software

I'm using this Docker image but unable to successfully run it

docker-compose.yaml:

version: "3"
services:

  jellyfin:
    container_name: jellyfin_beta
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/London
    image: jellyfin/jellyfin-vue:unstable
    ports:
      - 8097:8097
    restart: unless-stopped
    volumes: TODO

log:

Last login: Thu Nov  5 20:13:00 on ttys000
ldexterldesign@apple ~ % cd /Volumes/Secomba/ldexterldesign/Boxcryptor/Dropbox/gtd/home/calendar/Sanitise\ device\ -\ apple/docker/jellyfin\ -\ beta
ldexterldesign@apple jellyfin - beta % docker-compose up
jellyfin_beta is up-to-date
Attaching to jellyfin_beta
jellyfin_beta | /docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
jellyfin_beta | /docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
jellyfin_beta | /docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
jellyfin_beta | 10-listen-on-ipv6-by-default.sh: Getting the checksum of /etc/nginx/conf.d/default.conf
jellyfin_beta | 10-listen-on-ipv6-by-default.sh: error: /etc/nginx/conf.d/default.conf differs from the packages version
jellyfin_beta | /docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
jellyfin_beta | /docker-entrypoint.sh: Configuration complete; ready for start up
jellyfin_beta | /docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
jellyfin_beta | /docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
jellyfin_beta | /docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
jellyfin_beta | 10-listen-on-ipv6-by-default.sh: Getting the checksum of /etc/nginx/conf.d/default.conf
jellyfin_beta | 10-listen-on-ipv6-by-default.sh: error: /etc/nginx/conf.d/default.conf differs from the packages version
jellyfin_beta | /docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
jellyfin_beta | /docker-entrypoint.sh: Configuration complete; ready for start up
// nothing on 0.0.0.0:8097

Is anyone else successfully running this image?:

  • If yes then would you be kind enough to tell me what I'm doing wrong
  • If no then perhaps we should fix the image

Hope to hear back

Sincerely

@crobibero
Copy link
Member

crobibero commented Nov 5, 2020

jellyfin-vue listens on port 80, not 8087.

Do note that the image you linked is just the web interface, it does not contain the server.

@Maxr1998
Copy link
Member

Maxr1998 commented Nov 5, 2020

Hi! Jellyfin Vue is only a (future) replacement for the webclient, and doesn't provide the actual media server. So, you'd need jellyfin/jellyfin:latest for the server itself. Also, the Vue client uses port 80 (as default for the default nginx webserver), not 8097.

@ldexterldesign ldexterldesign changed the title Research/fix Docker install #Help Research/fix Docker install #Help #Question Nov 5, 2020
@ldexterldesign
Copy link
Author

Screenshot 2020-11-05 at 20 45 12

@ldexterldesign ldexterldesign changed the title Research/fix Docker install #Help #Question Reference Docker install #Help #Question Nov 5, 2020
@ldexterldesign
Copy link
Author

ldexterldesign commented Nov 5, 2020

Hope this helps someone else

docker-compose.yaml:

version: "3"
services:

  jellyfin:
    container_name: jellyfin_beta
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/London
    image: jellyfin/jellyfin-vue:unstable
    ports:
      - 8097:80
    restart: unless-stopped
    volumes: TODO

Sincerely

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants