Skip to content

Instantly share code, notes, and snippets.

@arturojain
Created March 13, 2019 21:30
Show Gist options
  • Select an option

  • Save arturojain/0996a18e520ae79c1ed9e7f6c5889259 to your computer and use it in GitHub Desktop.

Select an option

Save arturojain/0996a18e520ae79c1ed9e7f6c5889259 to your computer and use it in GitHub Desktop.
version: '2'
services:
app:
env_file: .env
build: .
ports:
- "7000:7000"
depends_on:
- postgres
environment:
DATABASE_URL: postgres://<user>@postgres/<db>
postgres:
image: postgres:10
environment:
POSTGRES_USER: <user>
POSTGRES_DB: <db>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment