Skip to content

Instantly share code, notes, and snippets.

@crittermike
Last active July 11, 2018 10:22
Show Gist options
  • Save crittermike/dccddb1bbd8c1c27e997100bc9863feb to your computer and use it in GitHub Desktop.
Save crittermike/dccddb1bbd8c1c27e997100bc9863feb to your computer and use it in GitHub Desktop.
Simple docker-compose.yml for Grav CMS. Put this in the Grav root and run `docker-compose up`.
version: '3.1'
services:
www:
container_name: gravtest_www
image: outrigger/apache-php:php71
network_mode: "bridge"
environment:
DOCROOT: /var/www
volumes:
- .:/var/www/
labels:
com.dnsdock.name: www
com.dnsdock.image: gravtest
outrigger.project: gravtest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment