Skip to content

Instantly share code, notes, and snippets.

@maykonchagas
Created October 9, 2019 14:56
Show Gist options
  • Select an option

  • Save maykonchagas/f210cc4df51a9b5c5015dc3022a5fa2e to your computer and use it in GitHub Desktop.

Select an option

Save maykonchagas/f210cc4df51a9b5c5015dc3022a5fa2e to your computer and use it in GitHub Desktop.
version: '3.3'
services:
db:
image: postgres:10.1-alpine
volumes:
- postgres_data:/var/lib/postgresql/data/
web:
build: .
command: python manage.py runserver 0.0.0.0:8990
volumes:
- .:/src
ports:
- 8990:8990
depends_on:
- db
volumes:
postgres_data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment