Skip to content

Instantly share code, notes, and snippets.

@imcookie
imcookie / docker-postgres-playground.yml
Last active November 9, 2018 21:02
docker-postgres-playground
version: "3"
services:
pghero:
environment:
- 'DATABASE_URL=postgres://postgres:pgpasswd@postgres:5432/demo'
ports:
- '8080:8080'
image: ankane/pghero
depends_on:
- postgres