Skip to content

Instantly share code, notes, and snippets.

@dabiddo
Created October 17, 2017 08:08
Show Gist options
  • Save dabiddo/e8ca6ed161661f016a5131e6fffa3b47 to your computer and use it in GitHub Desktop.
Save dabiddo/e8ca6ed161661f016a5131e6fffa3b47 to your computer and use it in GitHub Desktop.
Docker Compose file, for laravel 5.5
version: '2'
services:
# The Application
app:
build:
context: ./
dockerfile: app.dockerfile
working_dir: /var/www
volumes:
- ./laravel:/var/www
environment:
- "DB_PORT=3306"
- "DB_HOST=database"
# The Web Server
web:
build:
context: ./
dockerfile: web.dockerfile
working_dir: /var/www
volumes_from:
- app
ports:
- 8080:80
# The Database
database:
image: mysql:5.6
volumes:
- dbdata:/var/lib/mysql
environment:
- "MYSQL_DATABASE=homestead"
- "MYSQL_USER=homestead"
- "MYSQL_PASSWORD=secret"
- "MYSQL_ROOT_PASSWORD=secret"
ports:
- "33061:3306"
volumes:
dbdata:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment