Skip to content

Instantly share code, notes, and snippets.

@wilk
Created March 11, 2018 18:57
Show Gist options
  • Save wilk/f854a677a19609ee9e703c4f52c7740b to your computer and use it in GitHub Desktop.
Save wilk/f854a677a19609ee9e703c4f52c7740b to your computer and use it in GitHub Desktop.
docker-compose.yml
version: "3"
services:
django-app:
image: your_django_image:version
build:
context: ./app
env_file: .env
ports:
- "8080:80"
redis:
image: redis:4.0.8-alpine
db:
image: postgres:10.3-alpine
volumes:
- db:/var/lib/postgresql/data
celery:
image: custom-celery-image:1.0.0
volumes:
- db
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment