File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -83,6 +83,7 @@ services:
83
83
- PGID=1000
84
84
- TZ=Etc/UTC
85
85
- REDIS_URL=redis://<ip>:<port>
86
+ - HOST_IP=192.168.0.5/example.com
86
87
volumes :
87
88
- path_to_appdata:/config
88
89
ports :
@@ -99,6 +100,7 @@ docker run -d \
99
100
-e PGID=1000 \
100
101
-e TZ=Etc/UTC \
101
102
-e REDIS_URL=redis://<ip>:<port> \
103
+ -e HOST_IP=192.168.0.5/example.com \
102
104
-p 3334:3334 \
103
105
-v path_to_appdata:/config \
104
106
--restart unless-stopped \
@@ -116,6 +118,7 @@ To configure the container, pass variables at runtime using the format `<externa
116
118
| ` -e PGID=1000 ` | GID for permissions - see below for explanation |
117
119
| ` -e TZ=Etc/UTC ` | Specify a timezone to use, see this [ list] ( https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List ) . |
118
120
| ` -e REDIS_URL=redis://<ip>:<port> ` | Redis URL, eg. ` redis://192.168.1.2:6379 ` |
121
+ | ` -e HOST_IP=192.168.0.5/example.com ` | Domain/IP used to access the frontend |
119
122
| ` -v /config ` | Contains django database, logs and timelapses |
120
123
121
124
## Umask for running applications
You can’t perform that action at this time.
0 commit comments