Skip to content

Instantly share code, notes, and snippets.

@EMarcais
Created October 16, 2020 13:49
Show Gist options
  • Save EMarcais/c476ee5b988563c0d6e2b2404eae639b to your computer and use it in GitHub Desktop.
Save EMarcais/c476ee5b988563c0d6e2b2404eae639b to your computer and use it in GitHub Desktop.
version: '3.8'
services:
nginx:
image: nginx
container_name: Demo_nginx
ports:
- "8080:80"
volumes:
- ./site:/var/www/php
- ./lemp/nginx/default.conf:/etc/nginx/conf.d/default.conf
depends_on:
- php
networks:
- LEMP
php:
image: bitnami/php-fpm:latest
container_name: php-fpm
working_dir: /var/www/php
volumes:
- ./site:/var/www/php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment