Initial commit

This commit is contained in:
root
2023-08-09 14:01:28 +02:00
commit f4efbc7a63
199 changed files with 13338 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
version: '3.3'
services:
phpmyadmin:
image: phpmyadmin
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: EoxXraNDDYSdY5Hq
PMA_ARBITRARY: 1
PMA_HOST: 172.33.0.4
networks:
- proxy
- erpnext_network
labels:
traefik.docker.network: proxy
traefik.enable: "true"
traefik.http.routers.phpmyadmin-secure.entrypoints: websecure
traefik.http.routers.phpmyadmin-secure.middlewares: default@file
traefik.http.routers.phpmyadmin-secure.rule: Host(`phpmyadmin.prothmann.com`)
traefik.http.routers.phpmyadmin-secure.service: phpmyadmin
traefik.http.routers.phpmyadmin-secure.tls: "true"
traefik.http.routers.phpmyadmin-secure.tls.certresolver: http_resolver
traefik.http.routers.phpmyadmin.entrypoints: web
traefik.http.routers.phpmyadmin.rule: Host(`phpmyadmin.prothmann.com`)
traefik.http.services.phpmyadmin.loadbalancer.server.port: "80"
networks:
proxy:
external: true
erpnext_network:
external: true