Inital Adding of Compose Files

This commit is contained in:
mindesbunister
2025-06-24 13:31:31 +02:00
parent 2a146b67fb
commit 1f2b05c937
87 changed files with 30542 additions and 0 deletions

82
compose_files/helferlein.yml Executable file
View File

@@ -0,0 +1,82 @@
#docker-compose.yml
version: "3.3"
services:
helferlein:
logging:
driver: loki
options:
loki-url: "http://localhost:3100/loki/api/v1/push"
image: dalareo/wordpress-ldap
container_name: helferlein
restart: unless-stopped
ports:
- "8082:80"
volumes:
- /home/icke/helferlein/:/var/www/html
- /home/icke/helferlein/uploads.ini:/usr/local/etc/php/conf.d/uploads.ini
links:
- mysql-helferlein
environment:
WORDPRESS_DB_HOST: mysql-helferlein
WORDPRESS_DB_USER: wordpress
WORDPRESS_DB_NAME: helferlein
WORDPRESS_DB_PASSWORD: eccmts42*
networks:
helferlein:
ipv4_address: 172.24.0.2
mysql-helferlein:
logging:
driver: loki
options:
loki-url: "http://localhost:3100/loki/api/v1/push"
image: mysql:5.7
container_name: mysql-helferlein
# ports:
# - "6607:3306"
# links: wordpress-doku
environment:
# - default-authentication-plugin=mysql_native_password
- MYSQL_ROOT_PASSWORD=eccmts42*
- MYSQL_DATABASE=helferlein
- MYSQL_USER=wordpress
- MYSQL_PASSWORD=eccmts42*
volumes:
- /home/icke/mysql-helferlein/var:/var/lib/mysql
restart: unless-stopped
networks:
helferlein:
ipv4_address: 172.24.0.3
phpmyadmin:
logging:
driver: loki
options:
loki-url: "http://localhost:3100/loki/api/v1/push"
image: phpmyadmin/phpmyadmin
container_name: phpmyadmin
links:
- mysql-helferlein
environment:
PMA_HOST: mysql-helferlin
PMA_ARBITRARY: 1
restart: unless-stopped
ports:
- 8183:80
networks:
helferlein:
ipv4_address: 172.24.0.4
networks:
helferlein:
driver: bridge
ipam:
config:
- subnet: 172.24.0.0/29
volumes:
helferlein:
mysql-helferlein:
phpmyadmin: