AIL-framework/other_installers/docker
Pietro Mazzini 97949396b4 Uncomment update and explain in docker readme 2020-08-03 10:53:32 +02:00
..
pystemon fix: [ansible docker] move files, fix 365 2019-07-22 14:16:47 +02:00
Dockerfile Add tz as argument 2020-07-25 14:48:17 +02:00
README.md Uncomment update and explain in docker readme 2020-08-03 10:53:32 +02:00
docker-compose.yml fix: [ansible docker] move files, fix 365 2019-07-22 14:16:47 +02:00
docker_start.sh Add to docker start crawlers launch 2020-07-25 11:05:10 +02:00

README.md

Docker Quick Start (Ubuntu 18.04 LTS)

⚠️ Not maintained at the moment. If you are interested to get this running, please:

Fork -> Branch -> PR

  1. Install Docker
sudo su
apt-get install -y curl
curl https://get.docker.com | /bin/bash
  1. Type these commands to build the Docker image:
git clone https://github.com/CIRCL/AIL-framework.git
cd AIL-framework
cp -r ./other_installers/docker/Dockerfile ./other_installers/docker/docker_start.sh ./other_installers/docker/pystemon ./
cp ./configs/update.cfg.sample ./configs/update.cfg
vim/nano ./configs/update.cfg (set auto_update to False)
docker build --build-arg tz_buildtime=YOUR_GEO_AREA/YOUR_CITY -t ail-framework .
  1. To start AIL on port 7000, type the following command below:
docker run -p 7000:7000 ail-framework
  1. To debug the running container, type the following command and note the container name or identifier:
docker ps

After getting the name or identifier type the following commands:

docker exec -it CONTAINER_NAME_OR_IDENTIFIER bash
cd /opt/ail

Install using Ansible

Please check the Ansible readme.