Pharmacist | CEO | Student at Prescripz TeleHealth·
Needs advice
on
AnsibleAnsible
and
DockerDocker

I am looking for an easy to use platform or VPS hosting service that will allow me to deploy additional VPS at will and quickly install the OS as well.

I am also looking for a backend software that allows team messaging (chat service, video, and audio) that can be self-hosted and is free. Also, an easy to use webRTC library would be great too!

READ LESS
9 upvotes·15.4K views
Replies (6)
Recommends
on
Amazon EC2

Use Amazon EC2 for your infrastructure (including the OS, Networking, Storage, Compute, etc.). Create an AWS account for free here.

Use Ansible to configure your Operating Systems, deploy software, and manage the configurations on your servers in AWS. Puppet and Chef are other options too, but those require an agent run on your servers. Ansible just requires an SSH connection to your servers and you push out playbook runs across your servers whenever you need. It's idempotent so it only pushes changes that it determines are new to the remote systems.

I think Slack has a free version you can use if you want. That's what I've always used for Business chat.

Use Docker for you applications. You never have to manage dependencies on your servers when you deploy your applications using docker containers. You might have to manage things like versions of python and other OS centric software libraries, but nothing that would be a specific dependency for your applications. Everything is built into the container.

READ MORE
3 upvotes·8.3K views

I would recommend DigitalOcean for quick VPS creation. But it worth to consider Kubernetes or at least Docker. Once I did a project with DigitalOcean. They were guarantee kind of 90 seconds for creation of new VPS from a predefined template. But if you will decide to use Kubernetes (you can use DigitalOcean for that too, or other clouds, like Google, Azure, Amazon) - the deployment would be even much quicker than 90 seconds.

READ MORE
6 upvotes·11.1K views
View all (6)
Avatar of David Cavitt