Skip to content

Instantly share code, notes, and snippets.

@yakubenko
Created April 28, 2018 16:52
Show Gist options
  • Save yakubenko/fc9de2a65741512eada4fb5c00273515 to your computer and use it in GitHub Desktop.
Save yakubenko/fc9de2a65741512eada4fb5c00273515 to your computer and use it in GitHub Desktop.
version: '3'
services:
apache:
build: ./apache/
ports:
- "8080:8080"
volumes:
- /your/path:/var/www/app/
nginx:
build: ./nginx/
ports:
- "80:80"
depends_on:
- apache
links:
- apache
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment