Skip to content

Instantly share code, notes, and snippets.

@maxim
Created August 7, 2017 23:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maxim/2a28942f1a508ecbf079205db80f4940 to your computer and use it in GitHub Desktop.
Save maxim/2a28942f1a508ecbf079205db80f4940 to your computer and use it in GitHub Desktop.
Getting started with docker
version: '3'
services:
postgres:
image: postgres:9.6
ports:
- "5432:5432"
volumes:
- postgres-data:/var/lib/postgresql/data
volumes:
postgres-data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment