beetje laat antwoord wellicht maar ik regel alles via yaml:
.env file:
zo ziet het eruit op qnap webinterface:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
| jellyfin:
container_name: jellyfin
hostname: jellyfin
image: jellyfin/jellyfin
networks:
qnet-static:
ipv4_address: 10.0.10.140
mac_address: 02:43:a9:36:cb:cd
restart: always
devices:
- /dev/dri/renderD128:/dev/dri/renderD128
environment:
- UID=1001
- GID=100
- GIDLIST=${GIDLIST}
- TZ=${TZ}
volumes:
- ${servers}/jellyfin/config:/config
# - /path/to/config:/config
# - /path/to/cache:/cache
- ${servers}/jellyfin/cache:/cache
- ${Movies}:/movies
- ${Series}:/series
dns:
- 10.0.0.50
networks:
qnet-static:
driver: qnet
driver_opts:
iface: "eth3"
ipam:
driver: qnet
options:
iface: "eth3"
config:
- subnet: 10.0.10.0/24
gateway: 10.0.10.1 |
.env file:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| # Permissions PUID=1001 PGID=100 GIDLIST=1000 # Timezone TZ=Europe/Amsterdam # Backup folders Backups=/share/Backup Stacks=/share/Docker # Stack locations downloaders=/share/Docker/downloaders tools=/share/Docker/tools servers=/share/Docker/servers Test=/share/Docker/test Shared=/share/Docker/shared # Media Video=/share/Video Movies=/share/CACHEDEV3_DATA/Video/Movies Series=/share/Video/Series Downloads=/share/Download |
zo ziet het eruit op qnap webinterface:
[ Voor 13% gewijzigd door lowfi op 12-04-2023 14:12 ]