Compare commits
13
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1d8da3f2b0 | ||
|
|
b97d893ef0 | ||
|
|
8b793f15e2 | ||
|
|
1e6a82580b | ||
|
|
3e785534b7 | ||
|
|
eb03888207 | ||
|
|
98a82449d6 | ||
|
|
4a4259d353 | ||
|
|
a8f74bd50c | ||
|
|
ab4ce50033 | ||
|
|
0d60cac478 | ||
|
|
10f06df618 | ||
|
|
dde9990378 |
@@ -4,13 +4,13 @@ Learning Management System (LMS)
|
||||
|
||||
<!-- metadata -->
|
||||
|
||||
* **Maintainer**: [@stevensting](https://git.coopcloud.tech/stevensting)
|
||||
* **Maintainer**: [@stevensting](https://git.coopcloud.tech/stevensting) (Klasse & Methode)
|
||||
* **Category**: Learning
|
||||
* **Status**: 0, development
|
||||
* **Status**: 3, stable
|
||||
* **Image**: [`php`](https://hub.docker.com/_/php), 4, upstream
|
||||
* **Healthcheck**: no
|
||||
* **Backups**: no
|
||||
* **Email**: no
|
||||
* **Healthcheck**: yes
|
||||
* **Backups**: yes
|
||||
* **Email**: yes
|
||||
* **Tests**: no
|
||||
* **SSO**: no
|
||||
|
||||
@@ -24,7 +24,7 @@ Learning Management System (LMS)
|
||||
4. `abra app deploy YOURAPPDOMAIN`
|
||||
- attention: installing all packages and php extensions necessary can take a couple of minutes. Therefore container `frontend` and it's healthcheck will stay in status `starting` that long.
|
||||
|
||||
## Maintainers: Adding more settings to the env-file
|
||||
## Adding more settings to the env-file
|
||||
|
||||
Almost all of moddles config can be set via the php file config-dist.php.tmpl. Only few are already in there, so check moodles docs if you need more. But not even the docs list all possible parameters.
|
||||
Please put additional settings in the coop cloud section in the file.
|
||||
+3
-2
@@ -37,9 +37,9 @@ services:
|
||||
failure_action: rollback
|
||||
order: start-first
|
||||
labels:
|
||||
- "coop-cloud.${STACK_NAME}.version=0.0.1"
|
||||
- "coop-cloud.${STACK_NAME}.version=1.0.0+5.1-latest"
|
||||
frontend:
|
||||
image: nginx:1.20-alpine
|
||||
image: nginx:1.29-alpine
|
||||
networks:
|
||||
- proxy
|
||||
- backend
|
||||
@@ -67,6 +67,7 @@ services:
|
||||
- STACK_NAME
|
||||
- ROOT_PATH=/var/www/html/public
|
||||
- DOMAIN
|
||||
- MAX_BODY_SIZE=${MAX_BODY_SIZE:-256M}
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://localhost"]
|
||||
interval: 30s
|
||||
|
||||
@@ -4,6 +4,8 @@ server {
|
||||
listen [::]:80;
|
||||
server_name localhost;
|
||||
|
||||
client_max_body_size {{ env "MAX_BODY_SIZE" }};
|
||||
|
||||
root {{ env "ROOT_PATH" }};
|
||||
|
||||
#charset koi8-r;
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
first release, everything tested and assumed to be working. now with correct moodle version number.
|
||||
Reference in New Issue
Block a user