Archived
1
0

🏗️」 wip: Started re work

This commit is contained in:
2025-02-07 18:00:30 +01:00
parent 0aef0328c1
commit f48c98da5a
16 changed files with 119 additions and 118 deletions

View File

@ -0,0 +1,20 @@
volumes:
wp-db:
services:
db:
container_name: inception-db
build:
context: .
dockerfile: docker/images/mariadb/Dockerfile
networks:
- inception
environment:
- MYSQL_ROOT_PASSWORD="alpine"
- MYSQL_PASSWORD="alpine"
- MYSQL_USER="kanel"
- MYSQL_DATABASE="knl"
- TZ=Europe/Paris
volumes:
- wp-db:/var/lib/mysql
restart: unless-stopped

View File

@ -0,0 +1,11 @@
labels:
- traefik.enable=true
- traefik.docker.network=traefik-back
- traefik.http.routers.inception.rule=Host(`inception.kanel.ovh`)
- traefik.http.routers.inception.entrypoints=websecure
- traefik.http.routers.inception.tls=true
- traefik.http.routers.inception.tls.certresolver=letsencrypt
- traefik.http.routers.inception.service=inception
- traefik.http.services.inception.loadbalancer.server.port=80

View File

@ -0,0 +1,43 @@
volumes:
nginx-templates:
name: nginx-templates
driver: local
driver_opts:
device: ./configs/nginx/templates
o: "bind,ro"
type: none
nginx-entry:
name: nginx-entry
driver: local
driver_opts:
device: ./configs/nginx/entry
o: "bind,ro"
type: none
services:
nginx:
container_name: inception-nginx
build:
context: .
dockerfile: docker/images/nginx/Dockerfile
networks:
- inception
environment:
- TZ=Europe/Paris
- NGINX_PHP_HOST=inception-wordp-php
- NGINX_SSL_KEY_FILE=/etc/nginx/ssl/adjoly-wp.key
- NGINX_SSL_CERT_FILE=/etc/nginx/ssl/adjoly-wp.crt
- NGINX_EXPOSED_HOSTS=adjoly.42.fr
depends_on:
wordpress-php:
condition: service_healthy
db:
condition: service_healthy
volumes:
- wp-site:/var/www/html
- nginx-templates:/etc/nginx/templates
- nginx-entry:/docker-entrypoint.d
ports:
- "10443:443"
restart: unless-stopped

View File

@ -0,0 +1,22 @@
volumes:
wp-site:
services:
wordpress-php:
container_name: inception-wordp-php
build:
context: .
dockerfile: docker/images/wordpress/Dockerfile
networks:
- inception
depends_on:
db:
condition: service_healthy
environment:
- PHP_MEMORY_LIMIT="512M"
- PHP_MAX_UPLOAD="50M"
- PHP_PORT=9000
- TZ=Europe/Paris
volumes:
- wp-site:/var/www/html
restart: unless-stopped