| 12345678910111213141516171819202122232425262728 | version: '2'services:  backend:    build: ./backend    ports:    - "8080:8080"    volumes:    - ./backend:/opt/app    links:    - mongo    - redis  frontend:    build: ./frontend    ports:    - "80:80"    volumes:    - ./frontend:/opt/app  mongo:    image: mongo    ports:    - "27017:27017"  mongoclient:    image: mongoclient/mongoclient    ports:    - "3000:3000"  redis:    image: redis    command: "--notify-keyspace-events Ex"
 |