remove moodle, grafana from docker-compose

This commit is contained in:
PxlLoewe
2025-06-25 16:37:24 -07:00
parent aaa2dccee7
commit 0e961c1564
2 changed files with 1 additions and 47 deletions

View File

@@ -10,15 +10,7 @@ services:
POSTGRES_DB: var
volumes:
- 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:
container_name: redis
image: redis/redis-stack:latest
@@ -27,40 +19,6 @@ services:
volumes:
- "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:
image: livekit/livekit-server
container_name: livekit_server