Skip to content

Instantly share code, notes, and snippets.

@nanusdad
Last active May 17, 2023 10:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nanusdad/a750c7edd7e3d414ee52d927eecb3e9d to your computer and use it in GitHub Desktop.
Save nanusdad/a750c7edd7e3d414ee52d927eecb3e9d to your computer and use it in GitHub Desktop.
Alfresco ACS deployment (Community) with docker-compose

Alfresco ACS deployment (Community) with docker-compose

Getting started

git clone https://github.com/Alfresco/acs-deployment
cd acs-deployment/docker-compose
cp docker-compose.yml docker-compose.yml-orig # save original
cp community-docker-compose.yml docker-compose.yml
docker compose up 
# OR
docker compose up -d # detached

Stopping docker

sudo systemctl stop docker
sudo systemctl stop docker.socket
sudo systemctl stop containerd

Starting docker

sudo systemctl start docker

Checking Docker Root Dir

docker info -f '{{ .DockerRootDir}}'

Snap on Ubuntu

If installed with snap on Ubuntu the Docker daemon config file is in /var/snap/docker/current/config/daemon.json. One can edit the file to add "data-root": "/var/lib/docker" or similar line to define Docker Root dir.

Docker command cheatsheet

docker ps         # list containers running
docker images     # list local images
docker volume ls  # list volumes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment