mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 04:34:06 -08:00
added docker-entrypoint.sh
Just setting timezone for system tools (`date` and others) to match app timezone defined with GENERIC_TIMEZONE env var.
This commit is contained in:
parent
8861cb17c8
commit
cc97cc7b71
5
docker/images/n8n/docker-entrypoint.sh
Normal file
5
docker/images/n8n/docker-entrypoint.sh
Normal file
|
@ -0,0 +1,5 @@
|
|||
#!/bin/sh
|
||||
|
||||
ln -s /usr/share/zoneinfo/${GENERIC_TIMEZONE:-America/New_York} /etc/localtime
|
||||
|
||||
exec "$@"
|
Loading…
Reference in a new issue