Files
foundryvtt-docker/entrypoint.sh
T
Crovaxon b053891128
Build foundry vtt docker image and push to registry / docker (push) Failing after 9s
Set the UMASK in the entry script, added some brief step documentation, also Gitea action workflow attempt.
2024-06-16 01:56:48 +02:00

10 lines
264 B
Bash

#!/bin/sh
# set umask
umask ${UMASK}
# set permissions on application folder
chown -R ${PUID}:${PGID} /foundry
# run Foundry with the environmentally set user and group id
exec su-exec ${PUID}:${PGID} node /foundry/resources/app/main.js --dataPath=/foundrydata