mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-24 20:41:14 +00:00
17 lines
381 B
YAML
17 lines
381 B
YAML
version: '2'
|
|
|
|
services:
|
|
droppy:
|
|
container_name: droppy
|
|
image: silverwind/droppy
|
|
ports:
|
|
- 8989:8989
|
|
volumes:
|
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/droppy/config:/config
|
|
- /path/to/my/data/for/sharing:/files # path to shared files
|
|
environment:
|
|
- UID=1000
|
|
- GID=1000
|
|
- TZ="Europe/Berlin"
|
|
restart: unless-stopped
|