Skip to content

Instantly share code, notes, and snippets.

@lukesarnacki
Created September 18, 2018 07:03
Show Gist options
  • Save lukesarnacki/62a778da8d1b7f5a586c17d1a3f74a33 to your computer and use it in GitHub Desktop.
Save lukesarnacki/62a778da8d1b7f5a586c17d1a3f74a33 to your computer and use it in GitHub Desktop.
version: '3'
services:
postgres:
image: 'postgres:9.6'
environment:
POSTGRES_USER: 'postgres'
POSTGRES_PASSWORD: ''
POSTGRES_DB: 'agency_development'
ports:
- '5432:5432'
volumes:
- './tmp/db:/var/lib/postgresql/data'
redis:
image: redis:4.0.5
volumes:
- './tmp/redis:/data'
ports:
- '6379:6379'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment