cs320 bucas
cs320 bucas

Reputation: 265

How can I use a docker image for ATS?

I have some knowledge of using docker images. I found one for ATS at:

https://hub.docker.com/r/dockerhwxi/ats2/

But I do not know how to use it (as there is current no documentation). Could someone kindly help?

Upvotes: 0

Views: 316

Answers (2)

Hongwei Xi
Hongwei Xi

Reputation: 935

Step 1: Download the image:

docker pull dockerhwxi/ats2:v0.3.9

Step 2: Run the image (to produce a container of the name myproject):

docker run --name myproject -ti -v /path/to/myproject:/MyRoot/myproject dockerhwxi/ats2:v0.3.9

You can exit the container and restart it later:

docker start -ai myproject

Upvotes: 0

Nikhil Maheshwari
Nikhil Maheshwari

Reputation: 2248

You can follow below Steps :

  1. Install Docker (Ref : https://docs.docker.com/install/ )
  2. docker pull dockerhwxi/ats2:v0.3.9
  3. docker run -ti -v dockerhwxi/ats2:v0.3.9

Optionally, after docker installation you can clone below repository and run install.sh file

https://github.com/steinwaywhw/docker-ats

Upvotes: 1

Related Questions