Skip to content

Instantly share code, notes, and snippets.

@kooooohe
Last active January 20, 2020 11:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kooooohe/03d99ac8d08c7ee46dd894c122fd1d41 to your computer and use it in GitHub Desktop.
Save kooooohe/03d99ac8d08c7ee46dd894c122fd1d41 to your computer and use it in GitHub Desktop.
medium-blog-cloud-run-docker-compose.js
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