You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
281 B

  1. version: '2'
  2. services:
  3. backend:
  4. restart: always
  5. volumes:
  6. - backend:/backend
  7. command: /usr/bin/supervisord
  8. frontend:
  9. restart: always
  10. volumes:
  11. - frontend:/frontend
  12. command: npm start
  13. nginx:
  14. restart: always
  15. volumes:
  16. backend:
  17. frontend: