I've come across a project http://scrapoxy.readthedocs.io/ which can be installed on ec2. I'm trying to follow the quickstart (http://scrapoxy.readthedocs.io/en/master/quick_start/index.html) I've created an ec2 ubuntu instance and performed steps 1 and 2 in the screenshot. The instructions are not clear and I'm not experienced with docker, but am I supposed to ssh into my ec2 instance and "run the container" from the command line?
相关问题
- Docker task in Azure devops won't accept "$(pw
- Why doesn't php sleep work in the windows-subs
- JQ: Select when attribute value exists in a bash a
- Unable to run mariadb when mount volume
- Unspecified error (0x80004005) while running a Doc
You are correct that you will have to SSH into your EC2 instance. You are also going to have to install Docker if it is not already installed. You can find some good instructions for that here
Typically, with docker images, you have to perform the following:
The run command that you see in the instructions basically combines these 3 steps.
If it's easier to understand, or you need to take action between each step, you can also run the 3 steps individually. This is typically how I do it
You can then use docker ps to view running containers