Skip to content

Instantly share code, notes, and snippets.

@wendreof
Created August 31, 2019 12:41
Show Gist options
  • Save wendreof/8764ce1c5e636f4eceda264ff3c35b47 to your computer and use it in GitHub Desktop.
Save wendreof/8764ce1c5e636f4eceda264ff3c35b47 to your computer and use it in GitHub Desktop.
Docker Compose for TypeScript, and Mongo Environment
version: "3"
services:
api:
image: wendreof/api-ts
ports:
- "3050:3050"
links:
- link-db
link-db:
image: tutum/mongodb
ports:
- "27017:27017"
- "28017:28017"
environment:
- AUTH=no
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment