Skip to content

Instantly share code, notes, and snippets.

@marcossaore
Created March 4, 2020 17:15
Show Gist options
  • Save marcossaore/a9b3d8eca52157b7bdc100bac5138df4 to your computer and use it in GitHub Desktop.
Save marcossaore/a9b3d8eca52157b7bdc100bac5138df4 to your computer and use it in GitHub Desktop.
version: "3.2"
services:
nginx:
container_name: nginx
image: nginx:1.17.8
ports:
- 80:80
volumes:
- ./config/nginx/site.conf:/etc/nginx/conf.d/site.conf
- ./php_app:/php_app
links:
- php_app
- node_app
php_app:
build: php_app
container_name: php_app
volumes:
- ./php_app:/php_app
node_app:
build: node_app
container_name: node_app
volumes:
- ./node_app:/node_app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment