Guest User

Untitled

a guest
Jun 27th, 2024
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. jellyfin:
  2. image: jellyfin/jellyfin
  3. container_name: jellyfin
  4. user: "1000:963"
  5. network_mode: 'host'
  6. volumes:
  7. - ./apps/jellyfin/config:/config
  8. - ./apps/jellyfin/cache:/cache
  9.  
  10. - type: bind
  11. source: /nvme
  12. target: /nvme
  13.  
  14. - type: bind
  15. source: ./shared/media/Shows
  16. target: /shows
  17.  
  18. - type: bind
  19. source: ./shared/media/Movies
  20. target: /Movies
  21.  
  22. restart: 'unless-stopped'
  23. environment:
  24. - JELLYFIN_PublishedServerUrl=http://example.com
  25. extra_hosts:
  26. - 'host.docker.internal:host-gateway'
  27.  
Advertisement
Add Comment
Please, Sign In to add comment