This repository has been archived by the owner on Feb 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 180
/
Copy pathDockerfile
58 lines (58 loc) · 3.48 KB
/
Dockerfile
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
FROM emby/embyserver:beta
LABEL org.freenas.interactive="false" \
org.freenas.version="1" \
org.freenas.upgradeable="true" \
org.freenas.expose-ports-at-host="true" \
org.freenas.autostart="true" \
org.freenas.web-ui-protocol="http" \
org.freenas.web-ui-port=8096 \
org.freenas.web-ui-path="" \
org.freenas.port-mappings="8096:8096/tcp,8920:8920/tcp,7359:7359/udp,1900:1900/udp" \
org.freenas.volumes="[ \
{ \
\"name\": \"/config\", \
\"descr\": \"Configuration files directory\" \
}, \
{ \
\"name\": \"/media\", \
\"descr\": \"Media volume\" \
}, \
{ \
\"name\": \"/sslcerts\", \
\"descr\": \"sslcerts volume\" \
} \
]" \
org.freenas.settings="[ \
{ \
\"env\": \"APP_GID\", \
\"descr\": \"GID assigned to APP_USER upon creation\", \
\"optional\": true \
}, \
{ \
\"env\": \"APP_UID\", \
\"descr\": \"UID assigned to APP_USER upon creation\", \
\"optional\": true \
}, \
{ \
\"env\": \"APP_USER\", \
\"descr\": \"Name of user the service will run as\", \
\"optional\": true \
}, \
{ \
\"env\": \"EDGE\", \
\"descr\": \"UID assigned to APP_USER upon creation\", \
\"optional\": true \
}, \
{ \
\"env\": \"UMASK\", \
\"descr\": \"UID assigned to APP_USER upon creation\", \
\"optional\": true \
} \
]" \
org.freenas.static-volumes="[ \
{ \
\"container_path\": \"/etc/localtime\", \
\"host_path\": \"/etc/localtime\", \
\"readonly\": \"true\" \
} \
]"