Skip to content

Instantly share code, notes, and snippets.

@calvinclaus
Created August 22, 2018 16:42
Show Gist options
  • Save calvinclaus/4498c118c278f636547e68b6f6246617 to your computer and use it in GitHub Desktop.
Save calvinclaus/4498c118c278f636547e68b6f6246617 to your computer and use it in GitHub Desktop.
web:
image: hitalos/laravel:latest
ports:
- 80:80
volumes:
- ./:/var/www
links:
- db
environment:
DB_HOST: db
DB_DATABASE: dbname
DB_USERNAME: username
DB_PASSWORD: password
DB_CONNECTION: mysql
db:
image: mysql
environment:
MYSQL_ROOT_PASSWORD: example
MYSQL_DATABASE: dbname
MYSQL_USER: username
MYSQL_PASSWORD: password
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment