Santhosh
Santhosh

Reputation: 11788

AWS: web server: Is it better to use Docker or configure the server on EC2 instance

I am using archlinux on my development. I am trying to use a free tier AMI for EC2 in AWS.

I have found Amazon linux 2 as one of the AMI's

I didnt find arch linux AMI in free tier.

I know using docker i can still use archlinux and keep the environment same

The reason why i want to use arch is i am familiar with the package management which is very crucial for ease on any particular linux distribution.

So will using Docker effect AWS performance and is Docker worth using at all.

Or should i get used to the AMI linux distribution.

Upvotes: 0

Views: 230

Answers (2)

bitfox
bitfox

Reputation: 2292

Docker is perfect to go. Further, consider that, in different regions, you can use the AWS fargate. It allows you to start docker containers (scaling them up and down, etc) without having to manage servers (EC2 instances).

Upvotes: 0

AAber
AAber

Reputation: 1749

If you like Archlinux use the Archlinux Docker.

The Docker overhead is very small.

Using Docker will also make it easy to port your setup to any location: other cloud, desktop, other OS.

Upvotes: 1

Related Questions