2024-07-08 21:44:40 +00:00
|
|
|
# References
|
|
|
|
|
|
|
|
- https://github.com/l4rm4nd/VoucherVault
|
2024-08-05 08:31:06 +00:00
|
|
|
- https://github.com/l4rm4nd/VoucherVault/wiki/01-%E2%80%90-Installation
|
2024-07-28 00:29:38 +00:00
|
|
|
|
|
|
|
# Notes
|
|
|
|
|
|
|
|
> [!WARNING]
|
2024-08-05 08:30:19 +00:00
|
|
|
> 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
|
|
|
|
````
|