Skip to content

Instantly share code, notes, and snippets.

@josemmo
Last active March 3, 2019 17:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save josemmo/56f33c71e429cf12d4499f28496674e4 to your computer and use it in GitHub Desktop.
Save josemmo/56f33c71e429cf12d4499f28496674e4 to your computer and use it in GitHub Desktop.
version: '2'
services:
nginx:
image: nginx:alpine
ports:
- 80:80
restart: always
volumes:
- app-volume:/var/www/html
depends_on:
- php
php:
build: .
ports:
- 9000:9000
restart: always
volumes:
- app-volume:/aplicacion
volumes:
app-volume:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment