Skip to content

Instantly share code, notes, and snippets.

@Beomi
Created August 30, 2019 10:03
Show Gist options
  • Save Beomi/bd93e3ea0e429d40696f743c425bcc89 to your computer and use it in GitHub Desktop.
Save Beomi/bd93e3ea0e429d40696f743c425bcc89 to your computer and use it in GitHub Desktop.
docker compose file for template
version: "3"
services:
web:
build: .
command: python manage.py runserver 0.0.0.0:8000
volumes:
- .:/code
ports:
- "8000:8000"
environment:
- AWS_ACCESS_KEY_ID=
- AWS_SECRET_ACCESS_KEY=
- DB_HOST=
env_file:
- env.local
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment