Skip to content

Instantly share code, notes, and snippets.

@ulrikstrid
Created June 26, 2017 06:03
Show Gist options
  • Save ulrikstrid/dab7db995db3423517a54fb26c0dab7e to your computer and use it in GitHub Desktop.
Save ulrikstrid/dab7db995db3423517a54fb26c0dab7e to your computer and use it in GitHub Desktop.
Using docker-compose and composing files
version: '3'
services:
server:
volumes:
- ./server/src:/usr/src/app/src/
command: npm run dev
frontend:
volumes:
- ./frontend/src:/usr/src/app/src
- ./frontend/public:/usr/src/app/public
command: npm run start
build: ./frontend
ports:
- 4000:3000
links:
- server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment