docker-compose/examples/vouchervault/README.md
hhftechnologies dbb998c18a update
2024-09-28 09:59:12 +05:30

20 lines
527 B
Markdown

# References
- https://github.com/l4rm4nd/VoucherVault
- https://github.com/l4rm4nd/VoucherVault/wiki/01-%E2%80%90-Installation
# Notes
> [!WARNING]
> The container runs as low-privileged `www-data` user. So you have to adjust the permissions for the persistent database bind mount volume.
````
# create volume dir for persistence
mkdir -p /mnt/docker-volumes/vouchervault/database
# adjust permissions
sudo chown -R www-data:www-data /mnt/docker-volumes/vouchervault/*
# spawn the container stack
docker compose up
````