Skip to content

Instantly share code, notes, and snippets.

@ManfredLange
Created August 19, 2018 04:03
Show Gist options
  • Save ManfredLange/3126190e625f96509b0731c31de9f7dd to your computer and use it in GitHub Desktop.
Save ManfredLange/3126190e625f96509b0731c31de9f7dd to your computer and use it in GitHub Desktop.
Docker file with port for remote debugging
version: '3'
services:
backend:
build:
context: .
dockerfile: Dockerfile
image: helloexpress:latest
container_name: helloexpress.backend
environment:
NODE_ENV: "development"
ports:
- "3100:3000"
- "9229:9229"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment