Last active
January 20, 2020 11:36
-
-
Save 0xkohe/03d99ac8d08c7ee46dd894c122fd1d41 to your computer and use it in GitHub Desktop.
medium-blog-cloud-run-docker-compose.js
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: | |
node: | |
image: node:13 | |
volumes: | |
- ./app:/app:cached | |
working_dir: /app | |
env_file: | |
- .env | |
tty: true | |
ports: | |
- 8080:8080 | |
command: ["node", "index.js"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment