Archived
1
0

🏗️」 wip(Refont): Change the strucuture to be a real projet and will certainly never do bash again

This commit is contained in:
2025-01-04 18:21:46 +01:00
parent 774b012871
commit 22f0eaf29e
28 changed files with 2102 additions and 26 deletions

View File

@ -1,48 +0,0 @@
version: "3"
name: inception
volumes:
wp-db:
wp-site:
networks:
inception:
external: false
services:
nginx:
container_name: inception-nginx
networks:
- inception
environment:
- TZ=Europe/Paris
depends_on:
- wordpress-php
- db
volumes:
- wp-site:/var/www/html
ports:
- "443:443"
restart: unless-stopped
wordpress-php:
container_name: inception-workp-php
networks:
- inception
environment:
- TZ=Europe/Paris
volumes:
- wp-site:/var/www/html
depends_on:
- db
restart: unless-stopped
db:
container_name: inception-db
networks:
- inception
environment:
- TZ=Europe/Paris
volumes:
- wp-db:/var/lib/mysql
restart: unless-stopped