Skip to content

Latest commit

 

History

History
44 lines (36 loc) · 2.43 KB

docker-compose-deployment.md

File metadata and controls

44 lines (36 loc) · 2.43 KB

Deploying Alfresco Content Services using Docker Compose

Use this information to quickly start up Alfresco Content Services (ACS) using Docker Compose.

Prerequisites

To deploy Alfresco Content Services using docker-compose, you'll need to install the following software:

Component Installation Guide
License 30-day trial license for Enterprise
Docker https://docs.docker.com/
Docker Compose https://docs.docker.com/compose/install/

Structure

Docker Compose Deployment Components

Deploying Alfresco Content Services

  1. Clone this repository or download a single file - docker-compose.
  2. Navigate to the folder where the docker-compose.yml file is located.
  3. Log in to Quay.io with your credentials: docker login quay.io
  4. Run docker-compose up
  5. Navigate to the Admin Console and apply your trial license:
  1. Open the following URLs in your browser to check that everything starts up:

Note:

  • Make sure ports 5432, 8080, 8082, and 8083 are open. These are defined in the docker-compose.yml file.
  • If Docker is running on your local machine, the IP address will be just localhost.
  • If you're using the Docker Toolbox, run the following command to find the IP address:
docker-machine ip
  • If you run docker-compose up after deleting a previous Docker Compose cluster, then replace step 3 with the following command:
docker-compose down && docker-compose build --no-cache && docker-compose up