Skip to content

Commit

Permalink
fix: Fix gpg and less (#1321)
Browse files Browse the repository at this point in the history
* fix: Add gpg and less

Add gpg so backup "bench --site yoursite.com backup --with-files --compress" does not fail if encryption is enabled

Add "less": fixes #1301

* fix: Add gpg and less

Add gpg so backup "bench --site yoursite.com backup --with-files --compress" does not fail if encryption is enabled

Add "less": fixes #1301

* fix: Update documentation

update documentation to resemble current status

* fix: trailing whitespace

---------

Co-authored-by: Revant Nandgaonkar <revant.one@gmail.com>
  • Loading branch information
0xD0M1M0 and revant authored Jan 28, 2024
1 parent 220db20 commit 9614538
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/single-server-example.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ EMAIL=admin@example.com
HASHED_PASSWORD=$apr1$K.4gp7RT$tj9R2jHh0D4Gb5o5fIAzm/
```

If Container does not deploy put the HASHED_PASSWORD in ''.

Deploy the traefik container with letsencrypt SSL

```shell
Expand All @@ -91,7 +93,7 @@ docker compose --project-name traefik \
-f overrides/compose.traefik-ssl.yaml up -d
```

This will make the traefik dashboard available on `traefik.example.com` and all certificates will reside in `/data/traefik/certificates` on host filesystem.
This will make the traefik dashboard available on `traefik.example.com` and all certificates will reside in the Docker volume `cert-data`.

For LAN setup deploy the traefik container without overriding `overrides/compose.traefik-ssl.yaml`.

Expand Down
2 changes: 2 additions & 0 deletions images/custom/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@ RUN useradd -ms /bin/bash frappe \
libpangocairo-1.0-0 \
# For backups
restic \
gpg \
# MariaDB
mariadb-client \
less \
# Postgres
libpq-dev \
postgresql-client \
Expand Down
2 changes: 2 additions & 0 deletions images/production/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@ RUN useradd -ms /bin/bash frappe \
libpangocairo-1.0-0 \
# For backups
restic \
gpg \
# MariaDB
mariadb-client \
less \
# Postgres
libpq-dev \
postgresql-client \
Expand Down

0 comments on commit 9614538

Please sign in to comment.