Skip to content

Instantly share code, notes, and snippets.

@jhonata-menezes
Created May 3, 2018 22:11
Show Gist options
  • Save jhonata-menezes/29c72c664e156ee132280cc889be9e83 to your computer and use it in GitHub Desktop.
Save jhonata-menezes/29c72c664e156ee132280cc889be9e83 to your computer and use it in GitHub Desktop.
version: '2'
services:
mysql:
image: mysql:5.7
restart: always
# ports:
# - "3307:3306"
environment:
MYSQL_ROOT_PASSWORD: pass
MYSQL_DATABASE: mydb
fpm:
build: .
image: myphp:5-fpm
volumes:
- ./:/var/www/html
# ports:
# - "9000:9000"
links:
- mysql
nginx:
image: nginx
volumes:
- ./virtualhost:/etc/nginx/conf.d/default.conf
ports:
- "8086:80"
links:
- fpm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment