Created
January 21, 2021 02:20
-
-
Save qweliant/d5ff8d32496030c81d56267ea47fcc1a to your computer and use it in GitHub Desktop.
This file contains hidden or 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.4" | |
x-environment: &QUICKSTART_ENVIRONMENT | |
# These are read from .env file. The values in the .env file maybe overriden by shell envvars | |
PLAID_CLIENT_ID: ${PLAID_CLIENT_ID} | |
PLAID_SECRET: ${PLAID_SECRET} | |
PLAID_PRODUCTS: ${PLAID_PRODUCTS} | |
PLAID_COUNTRY_CODES: ${PLAID_COUNTRY_CODES} | |
PLAID_REDIRECT_URI: ${PLAID_REDIRECT_URI} | |
PLAID_ENV: ${PLAID_ENV} | |
services: | |
go: | |
build: | |
context: . | |
dockerfile: ./go/Dockerfile | |
ports: ["8000:8000"] | |
environment: | |
<< : *QUICKSTART_ENVIRONMENT | |
java: | |
build: | |
context: . | |
dockerfile: ./java/Dockerfile | |
ports: ["8000:8000"] | |
environment: | |
<< : *QUICKSTART_ENVIRONMENT | |
node: | |
build: | |
context: . | |
dockerfile: ./node/Dockerfile | |
ports: ["8000:8000"] | |
environment: | |
<< : *QUICKSTART_ENVIRONMENT | |
python: | |
build: | |
context: . | |
dockerfile: ./python/Dockerfile | |
ports: ["8000:8000"] | |
environment: | |
<< : *QUICKSTART_ENVIRONMENT | |
ruby: | |
build: | |
context: . | |
dockerfile: ./ruby/Dockerfile | |
ports: ["8000:8000"] | |
environment: | |
<< : *QUICKSTART_ENVIRONMENT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment