Skip to content

Instantly share code, notes, and snippets.

@klutchell
Last active May 7, 2024 04:04
Show Gist options
  • Save klutchell/4a51a6fceed41e9ca49d545d215fb2b1 to your computer and use it in GitHub Desktop.
Save klutchell/4a51a6fceed41e9ca49d545d215fb2b1 to your computer and use it in GitHub Desktop.
simple linuxserver/duplicati docker-compose stack
version: "3"
services:
duplicati:
image: linuxserver/duplicati
container_name: duplicati
environment:
PUID: ${PUID}
PGID: ${PGID}
TZ: ${TZ}
CLI_ARGS: --webservice-password=${WEBPASSWORD}
volumes:
- "duplicati:/config:rw"
- "${SOURCE}:/source:ro"
ports:
- 8200:8200/tcp
restart: unless-stopped
volumes:
duplicati:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment