Add context-dependence for volumes and UID/GID

This commit is contained in:
Jafner 2021-09-09 14:47:55 -07:00
parent 3de532e396
commit d24cc36aa2

View File

@ -4,6 +4,8 @@ services:
container_name: 5etools-docker container_name: 5etools-docker
image: joeyhafner/5etools-docker:latest image: joeyhafner/5etools-docker:latest
volumes: volumes:
- 5etools-docker:/usr/local/apache2/htdocs - ${PWD}/htdocs:/usr/local/apache2/htdocs # this assumes your docker-compose.yml file is inside a "5etools-docker" directory.
environment: environment:
- IMG=true - IMG=true
- PUID=${id -u} # this sets the user ID (uid) to that of the user running the command
- PGID=${id -g} # this sets the group ID (gid) to that of the user running the command