1
0
inception/srcs/docker-compose.yml

49 lines
793 B
YAML
Raw Normal View History

2024-12-13 18:54:39 +01:00
version: "3"
name: inception
2024-12-13 18:54:39 +01:00
volumes:
wp-db:
wp-site:
2024-12-13 18:54:39 +01:00
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"
2024-12-13 18:54:39 +01:00
restart: unless-stopped
wordpress-php:
container_name: inception-workp-php
networks:
- inception
environment:
- TZ=Europe/Paris
volumes:
- wp-site:/var/www/html
2024-12-13 18:54:39 +01:00
depends_on:
- db
restart: unless-stopped
db:
container_name: inception-db
networks:
- inception
environment:
- TZ=Europe/Paris
volumes:
- wp-db:/var/lib/mysql
2024-12-13 18:54:39 +01:00
restart: unless-stopped