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: