docker-compose_aem-alpine.yml 595 B

12345678910111213141516171819202122232425
  1. version: '3'
  2. services:
  3. dispatcher-publish-ssl:
  4. image: nexus.sebastianfisahn.com/dispatcher-publish:alpine
  5. stdin_open: true
  6. tty: true
  7. ports:
  8. - "80:80"
  9. - "443:443"
  10. links:
  11. - aem-publish-alpine:aem
  12. aem-publish-alpine:
  13. image: nexus.sebastianfisahn.com/aem-publish-alpine:6.3
  14. stdin_open: true
  15. tty: true
  16. ports:
  17. - "4503:4503"
  18. aem-author-alpine:
  19. image: nexus.sebastianfisahn.com/aem-author-alpine:6.3
  20. stdin_open: true
  21. tty: true
  22. ports:
  23. - "4502:4502"
  24. links:
  25. - aem-publish-alpine:publish