generated from mantinedev/next-pages-template
-
-
Notifications
You must be signed in to change notification settings - Fork 294
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add environment variable puid and pgid #2011
- Loading branch information
Showing
7 changed files
with
412 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
version: "2.1" | ||
services: | ||
#---------------------------------------------------------------------# | ||
# Homarr - A simple, yet powerful dashboard for your server. # | ||
#---------------------------------------------------------------------# | ||
homarr: | ||
container_name: homarr | ||
#image: ghcr.io/ajnart/homarr:latest | ||
build: # only for dev branch... | ||
context: . | ||
dockerfile: Dockerfile | ||
restart: unless-stopped | ||
environment: | ||
- PUID=1000 | ||
- PGID=1000 | ||
- DOCKER_GID=999 # Must be same as host docker group id | ||
- DATABASE_URL=file:/app/data/configs/db.sqlite | ||
volumes: | ||
- /var/run/docker.sock:/var/run/docker.sock # Optional, only if you want docker integration | ||
- ./homarr_persistence/configs:/app/data/configs | ||
- ./homarr_persistence/icons:/app/public/icons | ||
ports: | ||
- '7575:7575' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/bin/sh | ||
|
||
HOMARR_USER_PATHS="/app/data /app/public/icons" | ||
|
||
for path in $HOMARR_USER_PATHS | ||
do | ||
if [ ! -d "$path" ]; then | ||
mkdir -p $path | ||
fi | ||
|
||
find $path ! -user $PUID -print0 | while read -d $'\0' FILE | ||
do | ||
echo "${FILE} is not own by current user, fixing..." | ||
chown $PUID:$PGID ${FILE} | ||
done | ||
done | ||
|
||
echo Setting homarr UID to $PUID and GID to $PGID please wait... | ||
usermod -u $PUID homarr | ||
groupmod -g $PGID homarr | ||
|
||
DOCKER_GID=$(stat -c %g /var/run/docker.sock 2>/dev/null) | ||
if [[ $? -eq 0 ]]; then | ||
echo "SETTING DOCKER GID TO ${DOCKER_GID}" | ||
groupmod -g $DOCKER_GID docker | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
#!/bin/sh | ||
# vim:sw=4:ts=4:et | ||
|
||
set -e | ||
echo "Entering entrypoint..." | ||
|
||
echo "Param \$1: $1" | ||
echo "User: "$(whoami) | ||
|
||
|
||
entrypoint_log() { | ||
if [ -z "${NGINX_ENTRYPOINT_QUIET_LOGS:-}" ]; then | ||
echo "$@" | ||
fi | ||
} | ||
|
||
if /usr/bin/find "/docker-entrypoint.d/" -mindepth 1 -maxdepth 1 -type f -print -quit 2>/dev/null | read v; then | ||
entrypoint_log "$0: /docker-entrypoint.d/ is not empty, will attempt to perform configuration" | ||
|
||
entrypoint_log "$0: Looking for shell scripts in /docker-entrypoint.d/" | ||
find "/docker-entrypoint.d/" -follow -type f -print | sort -V | while read -r f; do | ||
case "$f" in | ||
*.envsh) | ||
if [ -x "$f" ]; then | ||
entrypoint_log "$0: Sourcing $f"; | ||
. "$f" | ||
else | ||
# warn on shell scripts without exec bit | ||
entrypoint_log "$0: Ignoring $f, not executable"; | ||
fi | ||
;; | ||
*.sh) | ||
if [ -x "$f" ]; then | ||
entrypoint_log "$0: Launching $f"; | ||
"$f" | ||
else | ||
# warn on shell scripts without exec bit | ||
entrypoint_log "$0: Ignoring $f, not executable"; | ||
fi | ||
;; | ||
*) entrypoint_log "$0: Ignoring $f";; | ||
esac | ||
done | ||
|
||
entrypoint_log "$0: Configuration complete; ready for start up" | ||
else | ||
entrypoint_log "$0: No files found in /docker-entrypoint.d/, skipping configuration" | ||
fi | ||
|
||
#exec "$@" | ||
|
||
# sys container init: | ||
# | ||
# If no command is passed to the container, supervisord becomes init and | ||
# starts all its configured programs (per /etc/supervisord.conf). | ||
# | ||
# If a command is passed to the container, it runs in the foreground; | ||
# supervisord runs in the background and starts all its configured | ||
# programs. | ||
# | ||
# In either case, supervisord always starts its configured programs. | ||
|
||
if [ "$#" -eq 0 ] || [ "${1#-}" != "$1" ]; then | ||
exec supervisord -n "$@" | ||
else | ||
supervisord -c /etc/supervisord.conf & | ||
exec "$@" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[program:homarr] | ||
command=/app/scripts/run.sh | ||
environment=HOME="/app",USER="homarr",LOGNAME="homarr" | ||
user=homarr | ||
stdout_logfile=/dev/stdout | ||
stdout_logfile_maxbytes=0 | ||
stderr_logfile=/dev/stderr | ||
stderr_logfile_maxbytes=0 | ||
autorestart=true | ||
startretries=0 | ||
stopasgroup=true | ||
killasgroup=true | ||
stopsignal=KILL |
Oops, something went wrong.