What can I use instead of SSH to connect to a container?

I am using Docker on the CentOS server. I will share containers with company employees.
In my opinion, users will connect to the server with SSH and then log in to own container but I don’t want that. I want the users to connect directly to container.

How can I do it?

Thank you

You will have to use something like Docker EE, which has a component called UCP. UCP allows you to distribute what are known as client bundles, which are certificates that can be used to authenticate & authorize users. These certificates will allow your company employees to log in & directly access the containers without needing to SSH into the hosts. Usually this is done using the docker client installed - docker for mac or docker for windows or any docker client.

https://www.docker.com/enterprise-edition

1 Like

Thanks for your help :slight_smile: