Skip to content

Instantly share code, notes, and snippets.

View qbunt's full-sized avatar
🙃

Jeremy Bunting qbunt

🙃
View GitHub Profile
@qbunt
qbunt / docker-compose.yml
Last active June 14, 2018 03:49 — forked from stevewithington/docker-compose-drupal-postgres.yml
Drupal with Postgres Docker Compose File
version: '2'
# Note: use the database service name `db` in the Host IP Address field ...
# Or, `docker container inspect {postgrescontainerid}` to obtain the IP Address needed for completing the Drupal setup screen.
services:
# Postgres
db:
image: postgres:9.6.5-alpine
restart: always