Docker Compose
Quick start guide for Deploying Asserts on Virtual or Physical Machine
- At least 4 GB of RAM dedicated to the host running the Docker engine
- 8Gb is recommended
- Docker Engine
Linux
Mac
Windows
- 1.Update the installed packages and package cache on your instancesudo yum update -y
- 2.sudo yum install docker
- 3.sudo service docker start
- 4.docker -v# Docker version 20.10.11, build dea9396
- 1.Run this command to download the current stable release of Docker Compose:sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
- 2.Apply executable permissions to the binary:sudo chmod +x /usr/local/bin/docker-compose
- 3.Add to Pathexport PATH=$PATH:/usr/local/bin
- 4.docker-compose --version# docker-compose version 1.29.2, build 5becea4c
Install Docker Desktop
Docker Desktop for Mac includes both Docker & Docker-Compose in a single installation package.
Install Docker Desktop
Docker Desktop for Windows includes both Docker & Docker-Compose in a single installation package.
All Asserts services publish their own metrics, which are in turn consumed by Asserts so it can monitor itself. This enables you to install and run Asserts without the following prerequisites to get a taste of the value that Asserts aims to provide. However, to realize the full potential that Asserts can provide please consider satisfying the following prerequisites.
- A Prometheus compatible endpoint to query (can be multiple)
- 1.Download the latest Asserts docker-compose files:
- 2.Pull Latest Imagesdocker-compose pull
- 3.Run Asserts Servicesdocker-compose up -d --remove-orphans
- 4.
- 5.Request a trial license to start observing!

- 1.Download the latest docker files:
- 2.Pull Latest Imagesdocker-compose pull
- 3.Run Asserts Servicesdocker-compose up -d --remove-orphans
- 1.Stop Asserts To Stop and Remove containers:docker-compose down
- 2.Managing Volumes Docker data volume persists even after a container is deleted. See how to manage persistent data here
Last modified 8d ago