Adding TZ Env to ChadBurn Captain file (#661)
The captainfile didn't use `$$cap_tz` and without the `TZ` env varriable alpine stays in UTC. With this fix, the container will now have the proper timezone set.
This commit is contained in:
parent
297bf1c96a
commit
0ddaef9d94
|
|
@ -5,6 +5,8 @@ services:
|
||||||
image: ghcr.io/premoweb/chadburn:$$cap_version
|
image: ghcr.io/premoweb/chadburn:$$cap_version
|
||||||
volumes:
|
volumes:
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
environment:
|
||||||
|
TZ: '$$cap_tz'
|
||||||
caproverExtra:
|
caproverExtra:
|
||||||
notExposeAsWebApp: 'true'
|
notExposeAsWebApp: 'true'
|
||||||
caproverOneClickApp:
|
caproverOneClickApp:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue