12345678910111213141516171819202122232425 |
- version: '3'
- services:
- dispatcher-publish-nonssl:
- image: nexus.sebastianfisahn.com/aem-dispatcher-publisher:latest
- stdin_open: true
- tty: true
- ports:
- - "80:80"
- - "443:443"
- links:
- - aem-publisher:aem-publisher
- aem-publisher:
- image: nexus.sebastianfisahn.com/aem-publisher:v6.3
- stdin_open: true
- tty: true
- ports:
- - "4503:4503"
- aem-author:
- image: nexus.sebastianfisahn.com/aem-author:v6.3
- stdin_open: true
- tty: true
- ports:
- - "4502:4502"
- links:
- - aem-publisher:aem-publisher
|