From b51517ce0a968929616faf17546ce50846cf26c6 Mon Sep 17 00:00:00 2001 From: Deepika Shanmugam Date: Tue, 19 Mar 2024 15:29:05 +0100 Subject: [PATCH] Removing unneccessary content --- README.md | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 66b431e..8bb6594 100644 --- a/README.md +++ b/README.md @@ -79,9 +79,8 @@ It's also possible to build and use a locally built image. See the The Docker Compose ACAP can be run in either TLS mode or unsecured mode. The Docker Compose ACAP uses unsecured mode by default. There is an option to choose between "TCPSocket" and "IPCSocket" socket -parameters. The API listens to IPC socket by default, even if the "IPCSocket" parameter is set to 'no'. -The TLS mode can be used with a TCP socket, as well as with or without an IPC socket. When the parameter -"TCPSocket" is set to 'no', the parameter "UseTLS" will also be set to 'no'. +parameters. The TLS mode can be used with a TCP socket, as well as with or without an IPC socket. When +the parameter "TCPSocket" is set to 'no', the parameter "UseTLS" will also be set to 'no'. Use the "Use TLS", "TCP Socket" and "IPC Socket" dropdowns in the web interface to switch between the two different modes(yes/no). Whenever these settings change, the Docker daemon will automatically restart. @@ -249,24 +248,13 @@ port 2376 when running secured using TLS. Please read section [Securing the Docker Compose ACAP using TLS](#securing-the-docker-compose-acap-using-tls) for more information. Below is an example of how to remotely run a docker command on an Axis device running -the Docker Compose ACAP in unsecured mode with TCP socket: - -With TCP Socket: +the Docker Compose ACAP in unsecured mode: ```sh DOCKER_INSECURE_PORT=2375 docker -H=:$DOCKER_INSECURE_PORT version ``` -With IPC Socket: - -Below is an example of how to remotely run a docker command on an Axis device running -the Docker Compose ACAP in unsecured mode with IPC socket: - -```sh -docker -H unix:///var/run/docker.sock version -``` - See [Client key and certificate](#client-key-and-certificate) for an example of how to remotely run docker commands on a device running a secured Docker Compose ACAP using TLS.