-
Notifications
You must be signed in to change notification settings - Fork 30
Try Qilin in Docker
Dongjie He edited this page Mar 24, 2022
·
1 revision
If you do not have access to the Linux OS or if you just want to try Qilin without going through the installation steps on your local machine, you can do so on Docker with our Docker image.
Understand Docker using the following links (optional):
docker login
3. Build a docker image containing a built QiLin using this Dockerfile
git clone https://github.com/QilinPTA/Qilin.git
cd Qilin
docker build -t hdjay2013/qilin:latest .
Or download the image from Docker Hub (https://hub.docker.com/r/hdjay2013/qilin).
docker pull hdjay2013/qilin:latest
docker run -i -t hdjay2013/qilin:latest /bin/bash
python3 run.py antlr ci -print
docker image ls
docker container ls
docker start "your_container_name"
sudo docker tag [existing image name or ID] [Docker Hub username or organization]/[repository name]:[tag]
sudo docker tag qilin qilin:latest
sudo docker push [Docker Hub username or organization name]/[repository name]:[tag]
sudo docker push hdjay2013/qilin:latest