https://github.com/orbinson/aem-sdk
AEM SDK docker images
https://github.com/orbinson/aem-sdk
Last synced: about 1 month ago
JSON representation
AEM SDK docker images
- Host: GitHub
- URL: https://github.com/orbinson/aem-sdk
- Owner: orbinson
- Created: 2024-11-17T00:16:50.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-03-08T00:06:18.000Z (3 months ago)
- Last Synced: 2025-04-05T15:53:59.295Z (about 2 months ago)
- Language: Dockerfile
- Homepage:
- Size: 31.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AEM SDK
AEM author and publish docker images for AEMaaCS using the AEM SDK.
## Using the image
The `version` should be in the original format like `2025.3.19823.20250304T101418Z-250200`.
To pull the author image
```shell
docker pull ghcr.io/orbinson/aem-sdk:author-
```To run an AEM author on port 4502 with Java debugger on port 5005
```shell
docker run -p 4502:4502 -p 5005:14502 ghcr.io/orbinson/aem-sdk:author-
```To pull the publish image
```shell
docker pull ghcr.io/orbinson/aem-sdk:publish-
```To run an AEM publisher on port 4503 with Java debugger on port 5006
```shell
docker run -p 4503:4503 -p 5006:14503 ghcr.io/orbinson/aem-sdk:author-
```## Development
First you need to get the artifacts from the private [aem-sdk-artifacts](https://github.com/orbinson/aem-sdk-artifacts) repository.
```shell
git clone [email protected]:orbinson/aem-sdk-artifacts.git
git lfs pull
```Or create the `aem-sdk-artifacts` directory and copy the artifacts there from your Downloads folder for example.
```shell
mkdir aem-sdk-artifacts
mv ~/Downloads/aem-sdk-*.zip aem-sdk-artifacts/
```Afterward you can build the image, by default and author is built.
```shell
docker build . -t aem-sdk:author
```And run the image with Java debugger on port 5005
```shell
docker run -p 4502:4502 -p 5005:14502 aem-sdk:author
```
To build the publish image, you need to specify the correct build arguments.```shell
docker build \
--build-arg RUNMODE=publish \
--build-arg PORT=4503 \
. -t aem-sdk:publish
```And run the image with Java debugger on port 5006
```shell
docker run -p 4503:4503 -p 5006:14503 aem-sdk:publish
```