Created
August 31, 2019 12:41
-
-
Save wendreof/8764ce1c5e636f4eceda264ff3c35b47 to your computer and use it in GitHub Desktop.
Docker Compose for TypeScript, and Mongo Environment
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" | |
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