123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- resources:
- limits:
- cpus: 2.0
- memory: 4096
- TZ: America/New_York
- jellyfin:
- publish_server_url: https://jellyfin.example.com
- additional_envs: []
- network:
- host_network: false
- web_port:
- bind_mode: published
- port_number: 8080
- https_port:
- bind_mode: ''
- port_number: 8443
- discovery_port:
- bind_mode: published
- port_number: 7359
- run_as:
- user: 568
- group: 568
- ix_volumes:
- jellyfin-cache: /opt/tests/mnt/jellyfin-cache
- jellyfin-config: /opt/tests/mnt/jellyfin-config
- jellyfin-transcodes: /opt/tests/mnt/jellyfin-transcodes
- jellyfin-series: /opt/tests/mnt/jellyfin-series
- jellyfin-video: /opt/tests/mnt/jellyfin-video
- storage:
- cache:
- type: ix_volume
- ix_volume_config:
- dataset_name: jellyfin-cache
- create_host_path: true
- config:
- type: ix_volume
- ix_volume_config:
- dataset_name: jellyfin-config
- create_host_path: true
- transcodes:
- type: temporary
- additional_storage:
- - type: ix_volume
- mount_path: /jellyfin-series
- ix_volume_config:
- dataset_name: jellyfin-series
- create_host_path: true
- - type: anonymous
- mount_path: /scratchpad
- volume_config:
- nocopy: true
- - type: ix_volume
- mount_path: /jellyfin-video
- ix_volume_config:
- dataset_name: jellyfin-video
- create_host_path: true
|