Skip to content

Instantly share code, notes, and snippets.

@qweliant
Created January 21, 2021 02:20
Show Gist options
  • Save qweliant/d5ff8d32496030c81d56267ea47fcc1a to your computer and use it in GitHub Desktop.
Save qweliant/d5ff8d32496030c81d56267ea47fcc1a to your computer and use it in GitHub Desktop.
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