Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved Duplicati application to enable encryption. #1511

Open
Emilien-Lambert opened this issue Sep 9, 2024 · 0 comments
Open

Improved Duplicati application to enable encryption. #1511

Emilien-Lambert opened this issue Sep 9, 2024 · 0 comments

Comments

@Emilien-Lambert
Copy link

Emilien-Lambert commented Sep 9, 2024

It would be really great to add the parameter ‘--encryption-module=aes’ to the list of entrypoints in the docker-compose.yaml of the Duplicati application.

This will enable encryption of backups, which isn't currently present.

In accordance with contributing guidelines if I get the green light for this modification, I can make the changes and create the pull requests

Like :

version: '3.7'
services:
  app_proxy:
    environment:
      APP_HOST: duplicati_duplicati_1
      APP_PORT: 8200
      PROXY_AUTH_ADD: 'false'
    container_name: duplicati_app_proxy_1
  duplicati:
    image: >-
      duplicati/duplicati:2.0.8.1_beta_2024-05-07@sha256:97b8ef7bcaa095793ef9f39049851f987860a8c832aaf67ef977ff398f9e996e
    entrypoint:
      - /usr/bin/duplicati-server
      - '--webservice-port=8200'
      - '--webservice-interface=any'
      - '--webservice-password=${APP_PASSWORD}'
      - '--webservice-allowed-hostnames=*'
      - '--encryption-module=aes'
    user: '1000:1000'
    restart: on-failure
    stop_grace_period: 1m
    volumes:
      - ${APP_DATA_DIR}/data:/data
      - ${UMBREL_ROOT}/data/storage:/umbrel
    container_name: duplicati_duplicati_1
@mayankchhabra mayankchhabra transferred this issue from getumbrel/umbrel Sep 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant