forked from remcorakers/aem-docker-getting-started
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
40 lines (40 loc) · 859 Bytes
/
docker-compose.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
version: '3'
services:
author:
container_name: aem_author
build:
context: ./
dockerfile: author/Dockerfile
hostname: 'author'
ports:
- '4502:4502'
- '30303:30303'
volumes:
- ./logs/author:/opt/aem/crx-quickstart/logs
depends_on:
- 'publisher'
publisher:
container_name: aem_publisher
build:
context: ./
dockerfile: publisher/Dockerfile
hostname: 'publisher'
ports:
- '4503:4503'
- '30304:30304'
volumes:
- ./logs/publisher:/opt/aem/crx-quickstart/logs
dispatcher:
container_name: aem_dispatcher
build:
context: ./dispatcher
hostname: 'dispatcher'
ports:
- '80:80'
- '443:443'
volumes:
- ./logs/dispatcher:/etc/httpd/logs
environment:
- DOMAIN=aem.local
depends_on:
- 'publisher'