Skip to content

Instantly share code, notes, and snippets.

@abdalla
Created May 8, 2017 21:53
Show Gist options
  • Save abdalla/b7db1c998de96abb696b5fb5ce953ae6 to your computer and use it in GitHub Desktop.
Save abdalla/b7db1c998de96abb696b5fb5ce953ae6 to your computer and use it in GitHub Desktop.
Tutorial - docker-compose.yml
version: '3'
services:
abdalla:
build: .
container_name: nodjs-test
image: abdalla/nodejs
volumes:
- .:/src
tty: true
ports:
- "3000:3000"
command: [npm, start]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment