mirror of
https://github.com/RoastSlav/quickdrop.git
synced 2025-12-21 06:19:34 -06:00
* Create docker-compose.yml Thanks for considering. Works for me on arm64. Cheers. I edited the example volume paths to ./ as opposed to /path/to/ * Update docker-compose.yml Added tz, PUID and GUID and restart unless stopped.
15 lines
339 B
YAML
15 lines
339 B
YAML
services:
|
|
quickdrop:
|
|
image: roastslav/quickdrop:latest
|
|
ports:
|
|
- 8080:8080
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=/etc/UTC
|
|
volumes:
|
|
- ./db:/app/db
|
|
- ./log:/app/log
|
|
- ./files:/app/files
|
|
restart: unless-stopped
|