Skip to content

Instantly share code, notes, and snippets.

@ChewySalmon
Last active June 17, 2021 13:44
Show Gist options
  • Save ChewySalmon/a588f92a0b3e9f242a022e548c4cd245 to your computer and use it in GitHub Desktop.
Save ChewySalmon/a588f92a0b3e9f242a022e548c4cd245 to your computer and use it in GitHub Desktop.
Docker compose template for laravel
version: '3.8'
services:
app:
build:
context: ./
dockerfile: app.dockerfile
working_dir: /var/www
volumes:
- ./:/var/www
depends_on:
- "database"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment