Skip to content

Instantly share code, notes, and snippets.

@mikemarr
Last active October 25, 2018 09:19
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save mikemarr/7d2a86eb913acc8fc8568c00ca42108b to your computer and use it in GitHub Desktop.
Save mikemarr/7d2a86eb913acc8fc8568c00ca42108b to your computer and use it in GitHub Desktop.
docker-compose file for dockerized aem
version: '2'
services:
author:
build:
context: .
dockerfile: Dockerfile-author
ports:
- 4502:4502
links:
- publisher:publisher
- solr:solr
publisher:
build:
context: .
dockerfile: Dockerfile-publisher
ports:
- 4503:4503
links:
- solr:solr
solr:
image: solr
ports:
- 8983:8983
entrpoint:
- docker-entrypoint.sh
- solr-precreate
- elevate_dam
# DOCKER-VERSION 1.0.1
FROM lexmarkweb/docker-aem-author
MAINTAINER YOUR_NAME_HERE
# DOCKER-VERSION 1.0.1
FROM lexmarkweb/docker-aem-publisher
MAINTAINER YOUR_NAME_HERE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment