diff options
| author | Alexandre <[email protected]> | 2022-05-13 01:45:56 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-05-12 22:45:56 -0700 |
| commit | 0ddaef9d9486da82e1b322539078e00709a5023c (patch) | |
| tree | a55cceb4b03f84e93ee766e98179e7f8d861f990 | |
| parent | 297bf1c96af6e07395b77e3498fe0115c5229828 (diff) | |
| download | caprover-one-click-apps-0ddaef9d9486da82e1b322539078e00709a5023c.tar.gz caprover-one-click-apps-0ddaef9d9486da82e1b322539078e00709a5023c.zip | |
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.
| -rw-r--r-- | public/v4/apps/chadburn.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/public/v4/apps/chadburn.yml b/public/v4/apps/chadburn.yml index dce8068..a5a9b57 100644 --- a/public/v4/apps/chadburn.yml +++ b/public/v4/apps/chadburn.yml @@ -5,6 +5,8 @@ services: image: ghcr.io/premoweb/chadburn:$$cap_version volumes: - /var/run/docker.sock:/var/run/docker.sock + environment: + TZ: '$$cap_tz' caproverExtra: notExposeAsWebApp: 'true' caproverOneClickApp: |
