Last active
January 21, 2019 09:03
-
-
Save PavelPolyakov/fc4e391e7f12913d582390caba69f9b4 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' | |
services: | |
my-project-ts: | |
build: . | |
depends_on: | |
- mongodb | |
ports: | |
- '3000:3000' | |
environment: | |
- NODE_ENV=production | |
mongodb: | |
image: mongo:3.6.0 | |
ports: | |
- "27017:27017" | |
volumes: | |
- dbvolume:/data | |
environment: { | |
AUTH: "no" | |
} | |
volumes: | |
dbvolume: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
refers to https://medium.com/car2godevs/fastify-with-typescript-production-ready-integration-2303318ecd9e