Ruslan Plastun
Ruslan Plastun

Reputation: 2254

Run Docker with old computer

I can't run docker (linux) containers on my PC - it is too slow for that. Is there other ways of running/developing/testing docker containers in a similar way to doing it on my PC? Maybe some browser app? Or the only option is to simply host a VM somewhere like DigitalOcean or AWS?

Upvotes: 1

Views: 2045

Answers (1)

Ahmed Galal
Ahmed Galal

Reputation: 73

Use AWS ECS. AWS gives you a free trial for 12 months where they give you some free stuff like free server hours and so on. After you create a new AWS account, go to AWS ECS service and then go to the repository section and create a new repository item by uploading your Docker image. Now go to the tasks section and create a task configuration for your docker image like memory, port and so on. After then, create a new service and assign it to the task that you just created and run it.

This process is straightforward and it will take you around an hour to finish all.

Follow the steps in this video: https://www.youtube.com/watch?v=1wLMLwjCqN4

Upvotes: 1

Related Questions