andreipoe / docker-cardigann-aarch64

Cardigann Docker image for AArch64

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

docker-cardigann for aarch64

This is a Docker image for running Cardigann on AArch64.

Obtaining the image

Building manually

Since DockerHub does not support automatic builds from source for non-x86 architectures, the recommended way to obtain the image is to build it yourself:

git clone https://github.com/andreipoe/docker-cardigann-aarch64.git
cd docker-cardigann-aarch64
docker build --build-arg cardigann_ver=v1.10.1 -t andreipoe/cardigann-aarch64 .

The cardigann_ver build argument is a git tree-ish specifying which version to build. It is recommended that you use the latest release tag. If this argument is not given, then master is used.

From DockerHub

If you do not want to build the container image yourself, you can download a pre-built copy from DockerHub:

docker pull andreipoe/cardigann-aarch64

Running the container

docker run -d --name=cardigann \
    --restart unless-stopped \
    -p 5060:5060 \
    -v /data/docker/cardigann/config:/config \
    andreipoe/cardigann-aarch64

Note that you can set the Cardigann port using the -p <port>:5060 argument and the location where your configutation is stored with the -v <path>:/config argument.

About

Cardigann Docker image for AArch64

License:MIT License