Skip to content

Instantly share code, notes, and snippets.

@Egnod
Created December 15, 2020 22:15
Show Gist options
  • Save Egnod/b588b93c47f94ad4de07b9d4573b0f6f to your computer and use it in GitHub Desktop.
Save Egnod/b588b93c47f94ad4de07b9d4573b0f6f to your computer and use it in GitHub Desktop.
# docker-compose config for local development
version: '3'
services:
superapp:
command: python3 -m superapp
restart: always
build:
context: ./
dockerfile: Dockerfile
volumes:
- ./superapp:/superapp
- ./config.json:/config.json
env_file:
- .env.local
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment