docker-compose.yml 334 B

123456789101112131415161718192021222324
  1. version: '3.8'
  2. services:
  3. back:
  4. image: alpine
  5. command: echo "Hello there!!"
  6. depends_on:
  7. - db
  8. networks:
  9. - backnet
  10. db:
  11. image: nginx
  12. networks:
  13. - backnet
  14. volumes:
  15. - data:/test
  16. front:
  17. image: nginx
  18. networks:
  19. - frontnet
  20. networks:
  21. frontnet:
  22. backnet:
  23. volumes:
  24. data: