Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- version: '2'
- services:
- backend:
- restart: always
- volumes:
- - backend:/backend
- command: /usr/bin/supervisord
- frontend:
- restart: always
- volumes:
- - frontend:/frontend
- command: npm start
- nginx:
- restart: always
- volumes:
- backend:
- frontend:
|