remove moodle, grafana from docker-compose
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -1,10 +1,6 @@
|
|||||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||||
|
|
||||||
letsencrypt
|
letsencrypt
|
||||||
moodle/*
|
|
||||||
|
|
||||||
# Grafana
|
|
||||||
grafana
|
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
node_modules
|
node_modules
|
||||||
|
|||||||
@@ -10,15 +10,7 @@ services:
|
|||||||
POSTGRES_DB: var
|
POSTGRES_DB: var
|
||||||
volumes:
|
volumes:
|
||||||
- postgres-data:/var/lib/postgresql/data
|
- postgres-data:/var/lib/postgresql/data
|
||||||
grafana:
|
|
||||||
image: grafana/grafana:latest
|
|
||||||
container_name: grafana
|
|
||||||
ports:
|
|
||||||
- "4100:3000"
|
|
||||||
depends_on:
|
|
||||||
- postgres
|
|
||||||
volumes:
|
|
||||||
- ./grafana:/var/lib/grafana
|
|
||||||
redis:
|
redis:
|
||||||
container_name: redis
|
container_name: redis
|
||||||
image: redis/redis-stack:latest
|
image: redis/redis-stack:latest
|
||||||
@@ -27,40 +19,6 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- "redis_data:/data"
|
- "redis_data:/data"
|
||||||
|
|
||||||
moodle_database:
|
|
||||||
container_name: moodle_database
|
|
||||||
image: docker.io/bitnami/mariadb:latest
|
|
||||||
environment:
|
|
||||||
# ALLOW_EMPTY_PASSWORD is recommended only for development.
|
|
||||||
- ALLOW_EMPTY_PASSWORD=yes
|
|
||||||
- MARIADB_USER=bn_moodle
|
|
||||||
- MARIADB_DATABASE=bitnami_moodle
|
|
||||||
- MARIADB_CHARACTER_SET=utf8mb4
|
|
||||||
- MARIADB_COLLATE=utf8mb4_unicode_ci
|
|
||||||
volumes:
|
|
||||||
- "./moodle/moodle-database:/bitnami/mariadb"
|
|
||||||
moodle:
|
|
||||||
image: bitnami/moodle:latest
|
|
||||||
container_name: moodle
|
|
||||||
ports:
|
|
||||||
- "8081:8080" # Moodle läuft auf http://localhost:8081
|
|
||||||
environment:
|
|
||||||
- MOODLE_DATABASE_HOST=moodle_database
|
|
||||||
- MOODLE_DATABASE_PORT_NUMBER=3306
|
|
||||||
- MOODLE_DATABASE_USER=bn_moodle
|
|
||||||
- MOODLE_DATABASE_NAME=bitnami_moodle
|
|
||||||
|
|
||||||
- MOODLE_USERNAME=admin
|
|
||||||
- MOODLE_PASSWORD=admin123
|
|
||||||
- MOODLE_EMAIL=admin@example.com
|
|
||||||
- MOODLE_SITE_NAME="Mein Lokales Moodle"
|
|
||||||
- MOODLE_SSLPROXY=false
|
|
||||||
- ALLOW_EMPTY_PASSWORD=yes
|
|
||||||
depends_on:
|
|
||||||
- moodle_database
|
|
||||||
volumes:
|
|
||||||
- ./moodle/moodle:/bitnami/moodle
|
|
||||||
- ./moodle/moodle-data:/bitnami/moodledata
|
|
||||||
livekit-server:
|
livekit-server:
|
||||||
image: livekit/livekit-server
|
image: livekit/livekit-server
|
||||||
container_name: livekit_server
|
container_name: livekit_server
|
||||||
|
|||||||
Reference in New Issue
Block a user