docker-bits/lsio/davos/docker-run.sh

19 lines
991 B
Bash
Raw Normal View History

2021-04-21 00:55:42 +00:00
# [Davos](https://github.com/linuxserver/davos) is an FTP automation tool that
# periodically scans given host locations for new files. It can be configured
# for various purposes, including listening for specific files to appear in the
# host location, ready for it to download and then move, if required. It also
# supports completion notifications as well as downstream API calls, to further
# the workflow.
2021-04-10 10:16:29 +00:00
source ./.env
docker run -d \
--name=davos \
2022-04-02 00:45:58 +00:00
-e PUID=${PUID:-1024} `# for UserID` \
-e PGID=${PGID:-100} `# for GroupID` \
2021-04-13 00:58:58 +00:00
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
2021-04-10 10:16:29 +00:00
-p 8080:8080 `# This is the default port that davos runs under` \
-v ${BASEDIR:-/volume1/docker}/davos/config:/config `# davos's config location. This is where it stores its database file and logs.` \
-v ${BASEDIR:-/volume1/docker}/davos/download:/download `# davos's file download location` \
--restart unless-stopped \
ghcr.io/linuxserver/davos