Archived
1
0

🎉」 init(Inception): Started

This commit is contained in:
2024-12-13 18:54:39 +01:00
parent 2e8e949573
commit 9b2023aaa7
9 changed files with 66 additions and 0 deletions

42
srcs/docker-compose.yml Normal file
View File

@ -0,0 +1,42 @@
version: "3"
volumes:
db:
wordpress:
networks:
inception:
external: false
services:
nginx:
container_name: inception-nginx
networks:
- inception
environment:
- TZ=Europe/Paris
depends_on:
- wordpress-php
- db
volumes:
- wordpress
restart: unless-stopped
wordpress-php:
container_name: inception-workp-php
networks:
- inception
environment:
- TZ=Europe/Paris
depends_on:
- db
restart: unless-stopped
db:
container_name: inception-db
networks:
- inception
environment:
- TZ=Europe/Paris
restart: unless-stopped