Compare commits

..
Author SHA1 Message Date
moritz 30ce2ba98e remvove unnecessary admin_password from web container 2023-01-11 15:57:20 +01:00
moritz dbe88a0eaa install cgi-fcgi via entrypoint 2023-01-11 15:38:24 +01:00
moritz d0f6ca27be make web healthcheck more future prove 2023-01-11 15:30:02 +01:00
moritz 55866403ee fix CI deployment: set healthcheck version 2023-01-10 18:31:25 +01:00
moritz 3f778ef1eb php-fpm healthcheck 2023-01-10 18:24:50 +01:00
moritz b7c6775ac6 mariadb healthcheck 2023-01-10 18:24:50 +01:00
moritz ad126fef8e redis healthcheck 2023-01-10 18:24:50 +01:00
moritz 6997636275 web healthcheck 2023-01-10 18:24:50 +01:00
3 changed files with 3 additions and 19 deletions
+2 -2
View File
@@ -21,9 +21,9 @@ Fully automated luxury Nextcloud via docker-swarm.
2. Deploy [`coop-cloud/traefik`]
3. `abra app new nextcloud --secrets` (optionally with `--pass` if you'd like
to save secrets in `pass`)
4. `abra app config YOURAPPDOMAIN` - be sure to change `$DOMAIN` to something that resolves to
4. `abra app YOURAPPDOMAIN config` - be sure to change `$DOMAIN` to something that resolves to
your Docker swarm box
5. `abra app deploy YOURAPPDOMAIN`
5. `abra app YOURAPPDOMAIN deploy`
## How do I customise the default home page when logging in?
+1 -1
View File
@@ -86,7 +86,7 @@ services:
failure_action: rollback
order: start-first
labels:
- "coop-cloud.${STACK_NAME}.version=3.1.0+25.0.1-fpm"
- "coop-cloud.${STACK_NAME}.version=3.0.1+25.0.1-fpm"
- "backupbot.backup=true"
- "backupbot.backup.path=/var/www/html/config/,/var/www/html/data/,/var/www/html/custom_apps/"
healthcheck:
@@ -26,7 +26,6 @@ Add SMTP Config to your .env file:
# MAIL_FROM_ADDRESS=
# MAIL_DOMAIN=
# SECRET_SMTP_PASSWORD_VERSION=v1
abra app secret insert example.com smtp_password v1 example_password
```
@@ -37,21 +36,6 @@ Some Apps can also be managed with abra app cmd!
```
# COMPOSE_FILE="$COMPOSE_FILE:compose.apps.yml"
# APPS="calendar sociallogin onlyoffice"
abra app cmd example.com app install_apps
# ONLYOFFICE_URL=https://onlyoffice.example.com
# SECRET_ONLYOFFICE_JWT_VERSION=v1
abra app secret insert example.com onlyoffice_jwt v1 example_password
abra app cmd example.com app install_onlyoffice
# BBB_URL=https://talk.example.org/bigbluebutton/ # trailing slash!
# SECRET_BBB_SECRET_VERSION=v1
abra app secret insert example.com bbb_secret v1 example_password
abra app cmd example.com app install_bbb
```
## Set Quota
```
# DEFAULT_QUOTA="10 GB"
abra app cmd example.com app set_default_quota
```