Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ borg init --encryption=repokey-blake2 ssh://uXXXXXX@uXXXXXX.your-backup.de:23/ho
Start a borgmatic shell with the following commands:

```bash
docker exec -ti $(docker ps -q -f name=borg-backup) bash
docker compose -f /svc/volumes/docker-compose/docker-compose.yaml exec -ti borg-backup bash
export BORG_PASSPHRASE=$(cat $BORG_PASSPHRASE_FILE)
```

Expand Down
6 changes: 3 additions & 3 deletions roles/compose/files/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ services:

# MySQL database for mail
mysql_mail:
image: mysql:5.7
image: mysql:8.0
volumes:
- mysql_mail_data:/var/lib/mysql
- mysql_mail_init_db:/docker-entrypoint-initdb.d
Expand Down Expand Up @@ -186,7 +186,7 @@ services:
- mysql_mail
- dovecot # SASL authentication
- postfix_milters
image: nesono/postfix_for_postfixadmin:2026-03-22
image: nesono/postfix_for_postfixadmin:2026-02-16.1
container_name: postfix
environment:
MYHOSTNAME: "smtp.nesono.com"
Expand Down Expand Up @@ -624,7 +624,7 @@ services:

# WordPress services
mysql_wordpress_noerpel:
image: mysql:5.7
image: mysql:8.0
volumes:
- mysql_wordpress_noerpel_data:/var/lib/mysql
environment:
Expand Down
Loading