-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Joomla with Let's Encrypt Using Docker Compose
- Loading branch information
1 parent
1729b32
commit 60b90dc
Showing
6 changed files
with
62 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Traefik Variables | ||
TRAEFIK_IMAGE_TAG=traefik:3.1 | ||
TRAEFIK_IMAGE_TAG=traefik:2.9 | ||
TRAEFIK_LOG_LEVEL=WARN | ||
TRAEFIK_ACME_EMAIL=[email protected] | ||
TRAEFIK_HOSTNAME=traefik.joomla.heyvaldemar.net | ||
|
@@ -9,32 +9,25 @@ TRAEFIK_HOSTNAME=traefik.joomla.heyvaldemar.net | |
TRAEFIK_BASIC_AUTH=traefikadmin:$$2y$$10$$sMzJfirKC75x/hVpiINeZOiSm.Jkity9cn4KwNkRvO7hSQVFc5FLO | ||
|
||
# Joomla Variables | ||
JOOMLA_MARIADB_IMAGE_TAG=mariadb:11.1 | ||
JOOMLA_IMAGE_TAG=bitnami/joomla:5.1.2 | ||
JOOMLA_POSTGRES_IMAGE_TAG=postgres:16 | ||
JOOMLA_IMAGE_TAG=joomla | ||
JOOMLA_DB_NAME=joomladb | ||
JOOMLA_DB_USER=joomladbbuser | ||
JOOMLA_DB_PASSWORD=XD8YowgYuwhYBfNcKbRG | ||
JOOMLA_DB_ADMIN_PASSWORD=DFsmVC5uOGyXTjkoRfRE | ||
JOOMLA_BLOG_NAME=Joomla | ||
JOOMLA_SITE_NAME=Joomla | ||
JOOMLA_ADMIN_USER=Joomla Admin | ||
JOOMLA_ADMIN_USERNAME=joomlaadmin | ||
JOOMLA_ADMIN_PASSWORD=BcFtUTOrYqh43i7859eK | ||
JOOMLA_ADMIN_EMAIL=[email protected] | ||
JOOMLA_HOSTNAME=joomla.heyvaldemar.net | ||
JOOMLA_SMTP_ADDRESS=smtp-relay.gmail.com | ||
JOOMLA_SMTP_PORT=587 | ||
JOOMLA_SMTP_USER_NAME=[email protected] | ||
JOOMLA_SMTP_PASSWORD=HerTYhLKjDkWuGobstUF | ||
JOOMLA_SMTP_PROTOCOL=tls | ||
JOOMLA_SMTP_SENDER_EMAIL=[email protected] | ||
JOOMLA_SMTP_SENDER_NAME=Joomla | ||
|
||
# Backup Variables | ||
BACKUP_INIT_SLEEP=30m | ||
BACKUP_INTERVAL=24h | ||
MARIADB_BACKUP_PRUNE_DAYS=7 | ||
BACKUP_INIT_SLEEP=1m | ||
BACKUP_INTERVAL=1m | ||
POSTGRES_BACKUP_PRUNE_DAYS=7 | ||
DATA_BACKUP_PRUNE_DAYS=7 | ||
MARIADB_BACKUPS_PATH=/srv/joomla-mariadb/backups | ||
POSTGRES_BACKUPS_PATH=/srv/joomla-postgres/backups | ||
DATA_BACKUPS_PATH=/srv/joomla-application-data/backups | ||
DATA_PATH=/bitnami/joomla | ||
MARIADB_BACKUP_NAME=joomla-mariadb-backup | ||
DATA_PATH=/var/www/html | ||
POSTGRES_BACKUP_NAME=joomla-postgres-backup | ||
DATA_BACKUP_NAME=joomla-application-data-backup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters