Files
inception/srcs/docker-compose.yml
2026-02-16 20:16:33 +01:00

20 lines
428 B
YAML

version: '3.8'
services:
nginx:
image: nginx:alpine
container_name: inception_nginx
ports:
- "8080:80"
volumes:
- ./html:/usr/share/nginx/html
restart: unless-stopped
wordpress:
image: wordpress:php8.3-fpm-alpine
container_name: inception_wordpress
ports:
- "8081:9000"
volumes:
- wordpress_data:/var/www/html
restart: unless-stopped
volumes:
wordpress_data: