Created
May 24, 2021 01:03
-
-
Save eifuentes/5c3d6e86a498358e89451bc18f45d862 to your computer and use it in GitHub Desktop.
Base Python Docker Compose
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.8' | |
services: | |
job: | |
build: | |
context: . | |
args: | |
- "INSTALL_DEV=true" | |
image: co/app:0.1.0-dev | |
volumes: | |
- .:/opt/app | |
environment: | |
- "APP_NAME=app" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment