Skip to main content

Installation

The service can be installed through the Portainer web interface. 

Learn about creating a new stack.

Docker Compose

Use the following code to install the service:

---
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=
      - DUPLICATI__WEBSERVICE_PASSWORD=
    volumes:
      # Persistent Data 
      - /srv/duplicati:/config

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