Compose-Examples/examples/nginx-php/docker-compose.yml

33 lines
1.1 KiB
YAML
Raw Normal View History

2023-02-15 21:45:31 +00:00
version: "3"
services:
web:
image: nginx:latest
hostname: nginx
volumes:
2023-03-12 15:27:20 +00:00
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/nginx/www-data:/var/www # place your files for web here
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/nginx/nginx-conf:/etc/nginx/conf.d # place provided nginx.conf here
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/nginx/logs:/var/log/nginx
2023-02-15 21:45:31 +00:00
container_name: nginx
restart: unless-stopped
2023-03-12 15:17:37 +00:00
ports:
- 8080:80
2023-02-15 21:45:31 +00:00
#labels:
# - traefik.enable=true
# - traefik.http.routers.nginx.rule=Host(`nginx.example.com`)
# - traefik.http.services.nginx.loadbalancer.server.port=80
# - traefik.docker.network=proxy
# # Part for local lan services only
# #- traefik.http.routers.nginx.middlewares=error-pages-middleware@docker
2023-02-15 21:45:31 +00:00
php:
image: php:8-fpm-alpine
hostname: php
volumes:
2023-03-12 15:27:20 +00:00
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/nginx/www-data:/var/www # must be same path to www-data as above
2023-02-15 21:45:31 +00:00
container_name: php
restart: unless-stopped
working_dir: /var/www
2023-03-12 15:19:22 +00:00
expose:
- 9000