This commit adds the LGSM_DATADIR environment variable to the Dockerfiles and entrypoint.sh script. The variable is set to "/data/data" in all three Dockerfiles, and it is exported in the entrypoint.sh script. This allows for easy configuration of the data directory path for LinuxGSM.
- Renamed the `exit_handler` function to `exit_handler_user` in `entrypoint-user.sh`
- Updated the echo statements in the exit handler to use proper capitalization
- Removed unnecessary `exec` command in the exit handler of both scripts
- Modified trap signal from `exit_handler` to `exit_handler_user` in `entrypoint-user.sh`
- Added background execution for log tailing in both scripts using `tail -F`
- Added wait command at the end of each script to ensure completion
- Refactored the exit_handler function to handle shutdown commands more efficiently.
- Added an exit trap to ensure proper execution of the exit_handler function on SIGQUIT, SIGINT, and SIGTERM signals.
- Improved code organization by moving the "Loading exit handler" message to a separate line for clarity.
- Updated the entrypoint.sh file with similar changes for consistency.
- Updated Dockerfiles for Ubuntu 18.04, 20.04, and 22.04 to use Node.js version 16.x instead of 18.x or 20.x
- Set environment variables LGSM_GITHUBBRANCH, LGSM_LOGDIR, LGSM_SERVERFILES, and LGSM_CONFIG to new values
- Changed working directory from /linuxgsm to /app
- Created /data directory in the container
- Cleared modules directory (/app/lgsm/modules) if branch is not master
This commit updates the entrypoint.sh script to set the HOME environment variable to /home/docker. This change ensures that the correct home directory is used when switching to user ${USERNAME}.
- Update Node.js installation to version 18.x
- Add gosu package for better user switching
- Remove s6 overlay installation
- Modify entrypoint scripts to use gosu instead of s6-setuidgid
- Add healthcheck script using gosu
BREAKING CHANGE: This commit removes the s6 overlay installation from the Dockerfiles and modifies the entrypoint scripts to use gosu instead of s6-setuidgid. This may affect users who rely on the previous behavior.