compose.yaml 226 B

123456789101112131415
  1. services:
  2. back:
  3. image: nginx:alpine
  4. depends_on:
  5. - db
  6. db:
  7. image: nginx:alpine
  8. front:
  9. image: nginx:alpine
  10. deploy:
  11. replicas: 2
  12. dbadmin:
  13. image: nginx:alpine
  14. deploy:
  15. replicas: 0