Docker + nginx + MySQL + PHP
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
420 B

10 months ago
version: '3'
10 months ago
services:
10 months ago
nginx:
image: helloz/nginx:alpine-1.24.0
container_name: nginx
10 months ago
#environment:
network_mode: "host"
volumes:
- ../wwwroot:/var/www/html
- ./conf/nginx.conf:/usr/local/nginx/conf/nginx.conf
10 months ago
- ./conf/vhost:/usr/local/nginx/conf/vhost
- ./conf/stream:/usr/local/nginx/conf/stream
- ./logs:/usr/local/nginx/logs
10 months ago
restart:
always