Ad Code

Responsive Advertisement

Ticker

6/recent/ticker-posts

How do I enable the remote API for dockerd

 

  1. Create a file at /etc/systemd/system/docker.service.d/startup_options.conf with the below contents:

    # /etc/systemd/system/docker.service.d/override.conf
    [Service]
    ExecStart=
    ExecStart=/usr/bin/dockerd -H fd:// -H tcp://0.0.0.0:2375
    

    Note: The -H flag binds dockerd to a listening socket, either a Unix socket or a TCP port. You can specify multiple -H flags to bind to multiple sockets/ports. The default -H fd:// uses systemd's socket activation feature to refer to /lib/systemd/system/docker.socket.

  2. Reload the unit files:

    $ sudo systemctl daemon-reload
    
  3. Restart the docker daemon with new startup options:

    $ sudo systemctl restart docker.service
    
  4. Ensure that anyone that has access to the TCP listening socket is a trusted user since access to the docker daemon is root-equivalent.