1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- 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: published
- 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: tmpfs
- tmpfs_config:
- size: 500
- 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
|