Skip to main content

Installation

Duplicati can be installed by following the Portainer guide for creating a new stack.  Learn about configuring a Docker stacks and then use the following Docker Compose code to run this app:

---
services:
  duplicati:
    image: lscr.io/linuxserver/duplicati:latest
    container_name: duplicati
    network_mode: bridge
    environment:
      - PUID=0
      - PGID=0
      - TZ=America/Vancouver
      - SETTINGS_ENCRYPTION_KEY=
      - CLI_ARGS=
      - DUPLICATI__WEBSERVICE_PASSWORD=
    volumes:
      # Persistent Data 
      - /srv/duplicati:/config

      # Backup Source
      - /:/home:ro
    ports:
      - 8200:8200
    restart: unless-stopped