Compare commits

..

8 Commits

Author SHA1 Message Date
30ce2ba98e remvove unnecessary admin_password from web container
Some checks failed
continuous-integration/drone/pr Build is failing
2023-01-11 15:57:20 +01:00
dbe88a0eaa install cgi-fcgi via entrypoint
Some checks failed
continuous-integration/drone/pr Build is failing
2023-01-11 15:38:24 +01:00
d0f6ca27be make web healthcheck more future prove 2023-01-11 15:30:02 +01:00
55866403ee fix CI deployment: set healthcheck version
Some checks failed
continuous-integration/drone/pr Build is failing
2023-01-10 18:31:25 +01:00
3f778ef1eb php-fpm healthcheck
Some checks failed
continuous-integration/drone/pr Build is failing
2023-01-10 18:24:50 +01:00
b7c6775ac6 mariadb healthcheck 2023-01-10 18:24:50 +01:00
ad126fef8e redis healthcheck 2023-01-10 18:24:50 +01:00
6997636275 web healthcheck 2023-01-10 18:24:50 +01:00
4 changed files with 12 additions and 28 deletions

View File

@ -3,7 +3,7 @@ kind: pipeline
name: deploy to swarm-test.autonomic.zone
steps:
- name: deployment
image: git.coopcloud.tech/coop-cloud/stack-ssh-deploy:latest
image: decentral1se/stack-ssh-deploy:latest
settings:
host: swarm-test.autonomic.zone
stack: nextcloud

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?
@ -33,11 +33,11 @@ Fully automated luxury Nextcloud via docker-swarm.
## Running `occ`
`abra app run --user www-data YOURAPPDOMAIN app php occ user:list --help`
`abra app run --user www-data YOURAPPDOMAIN app occ user:list --help`
## Upgrading Nextcloud apps
`abra app run --user www-data YOURAPPDOMAIN app php occ app:update --all`
`abra app run --user www-data YOURAPPDOMAIN app occ app:update --all`
## How do I fix a Nextcloud version snafu?

View File

@ -1,7 +1,7 @@
version: "3.8"
services:
web:
image: nginx:1.23.3
image: nginx:1.23.2
configs:
- source: nginx_conf
target: /etc/nginx/nginx.conf
@ -38,10 +38,10 @@ services:
interval: 30s
timeout: 10s
retries: 10
start_period: 5m
start_period: 1m
app:
image: nextcloud:25.0.4-fpm
image: nextcloud:25.0.1-fpm
depends_on:
- db
configs:
@ -86,7 +86,7 @@ services:
failure_action: rollback
order: start-first
labels:
- "coop-cloud.${STACK_NAME}.version=3.1.2+25.0.4-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:
@ -94,10 +94,10 @@ services:
interval: 30s
timeout: 10s
retries: 10
start_period: 5m
start_period: 1m
cron:
image: nextcloud:25.0.4-fpm
image: nextcloud:25.0.1-fpm
volumes:
- nextcloud:/var/www/html/
- nextapps:/var/www/html/custom_apps:cached
@ -109,7 +109,7 @@ services:
entrypoint: /cron.sh
cache:
image: redis:7.0.9-alpine
image: redis:7.0.5-alpine
networks:
- internal
volumes:

View File

@ -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
```