Link Search Menu Expand Document

Install ArcherySec As Docker Container

Introudction

Follow the procedure on this page to deploy ArcherySec on a Linux host running the Docker container engine.

Prerequisites

  • Docker
  • docker-compose

ArcherySec Run As Container

$ docker pull archerysec/archerysec
$ docker run \
    -e NAME=user \
    -e EMAIL=user@user.com \
    -e PASSWORD=admin@123A  \
    -it -p 8000:8000 archerysec/archerysec:latest

Provision Through docker-compose

# Git clone archerysec project
git clone https://github.com/archerysec/archerysec.git
# Move to archerysec directory
cd archerysec
# Run docker-compose 
docker-compose up -d