Skip to content
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
54f1808
Add timezone setting to template.env
LSI-ZuagrastaWastl Feb 14, 2026
9b9ff56
Add timezone environment variable to services
LSI-ZuagrastaWastl Feb 14, 2026
6f3aa89
Add PHP timezone config to docker-compose
LSI-ZuagrastaWastl Feb 14, 2026
2c8d4fd
Change PHP timezone variable and set localtime
LSI-ZuagrastaWastl Feb 25, 2026
f712ff7
Fix timezone setting in PHP configuration
LSI-ZuagrastaWastl Feb 25, 2026
dce5669
Change PHP_TIMEZONE variable to use TZ
LSI-ZuagrastaWastl Feb 25, 2026
da0e4e4
Remove tzone.ini configuration from docker-compose
LSI-ZuagrastaWastl Feb 25, 2026
25e999f
Change timezone setting to use update-alternatives
LSI-ZuagrastaWastl Mar 9, 2026
48e3c76
Merge branch 'master' into master
LSI-ZuagrastaWastl Mar 9, 2026
44f0c8c
sed TZ:UTC to TZ:-UTC
LSI-ZuagrastaWastl Mar 10, 2026
578b141
Change php-timezone variable to use TZ directly
LSI-ZuagrastaWastl Mar 10, 2026
98b1984
Remove PHP_TIMEZONE environment variable
LSI-ZuagrastaWastl Mar 10, 2026
ee22d13
Update PHP timezone configuration to TZ in entrypoint_fpm.sh
LSI-ZuagrastaWastl Mar 10, 2026
f611df2
Update timezone comment in template.env
LSI-ZuagrastaWastl Mar 10, 2026
dbb4031
Update timezone setting in entrypoint.sh
LSI-ZuagrastaWastl Mar 11, 2026
2441374
Merge branch 'MISP:master' into master
LSI-ZuagrastaWastl Mar 16, 2026
e83392b
Fix sed command for date.timezone configuration
LSI-ZuagrastaWastl Mar 16, 2026
4203c57
Merge branch 'MISP:master' into master
LSI-ZuagrastaWastl Mar 20, 2026
2a5eca5
Fix sed command for date.timezone configuration
LSI-ZuagrastaWastl Mar 20, 2026
1e91d8e
Merge branch 'MISP:master' into master
LSI-ZuagrastaWastl Mar 23, 2026
84c6125
Remove timezone setting for broader compatibility
LSI-ZuagrastaWastl Mar 23, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions core/files/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,6 @@ export SUPERVISOR_PASSWORD=${SUPERVISOR_PASSWORD:-supervisor}

# Setting Timezone for supervisord
update-alternatives --install /etc/localtime localtime /usr/share/zoneinfo/${TZ} 0
# Also set /etc/timezone for broader compatibility
echo "${TZ}" > /etc/timezone

# Hinders further execution when sourced from other scripts
if [[ "${BASH_SOURCE[0]}" != "$0" ]]; then
Expand Down
Loading