Skip to content

Commit e61c01d

Browse files
committed
Updade docker-compose.yml
1 parent bb54dbf commit e61c01d

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

etc/docker-biglinux/jellyfin/docker-compose.yml

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,37 +5,38 @@ services:
55
environment:
66
# The JELLYFIN_PublishedServerUrl environment variable sets the autodiscovery response domain or IP address, allowing the Jellyfin server to be accessible at http://localhost:8096.
77
- JELLYFIN_PublishedServerUrl=http://localhost:8096
8-
#- TZ=America/Sao_Paulo
8+
99
# Specify a timezone to use, see this (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List)
10+
#- TZ=America/Sao_Paulo
1011

11-
#- JELLYFIN_PublishedServerUrl=192.168.0.5
1212
# Optional - Set the autodiscovery response domain or IP address.
13-
14-
- UMASK_SET=022
15-
# Sets the file permission mask for newly created files and directories within the Jellyfin container.
13+
#- JELLYFIN_PublishedServerUrl=192.168.0.5
1614

1715
volumes:
16+
# Jellyfin data storage location. This can grow very large, 50gb+ is likely for a large collection.
1817
- ${HOME}/Docker/Jellyfin/config:/config
19-
# Jellyfin data storage location. This can grow very large, 50gb+ is likely for a large collection.
2018

19+
# Cache local Jellyfin
20+
- ${HOME}/Docker/Jellyfin/cache:/cache
21+
22+
# /path/to/tvseries:/data/tvshows
2123
- ${HOME}/Docker/Jellyfin/tvseries:/data/tvshows
22-
# /path/to/tvseries:/data/tvshows
2324

25+
# /path/to/movies:/data/movies
2426
- ${HOME}/Docker/Jellyfin/movies:/data/movies
25-
# /path/to/movies:/data/movies
2627

2728
ports:
29+
# Http webUI.
2830
- "8096:8096"
29-
# Http webUI.
3031

32+
# Optional - Https webUI (you need to set up your own certificate).
3133
- "8920:8920"
32-
# Optional - Https webUI (you need to set up your own certificate).
3334

35+
# Optional - Allows clients to discover Jellyfin on the local network.
3436
- "7359:7359/udp"
35-
# Optional - Allows clients to discover Jellyfin on the local network.
3637

38+
# Optional - Service discovery used by DLNA and clients.
3739
- "1900:1900/udp"
38-
# Optional - Service discovery used by DLNA and clients.
3940

4041
restart: always
4142
networks:

0 commit comments

Comments
 (0)