This adapter uses Sentry libraries to automatically report exceptions and code errors to the developers. For more details and for information how to disable the error reporting, see Sentry-Plugin Documentation! Sentry reporting is used starting with js-controller 3.0.
This adapter is a graphical user interface for managing Docker containers. It allows you to easily create, start, stop, and delete Docker containers directly from the ioBroker admin interface.
The adapter provides a user-friendly way to manage your Docker environment without needing to use command-line tools.
Docker is an open-source platform for automating the deployment, scaling, and management of applications in containers. Containers are lightweight, isolated environments that include all necessary components such as code, runtime, libraries, and configurations to run an application. With Docker, developers can deliver applications consistently and portably, regardless of the underlying infrastructure. This facilitates team collaboration, simplifies running applications on different systems, and improves scalability.
A Docker image is a lightweight, standalone, and executable software package that includes everything needed to run a piece of software, including the code, runtime, libraries, environment variables, and configuration files. Think of it as a snapshot of an application and its dependencies at a specific point in time. In ioBroker notation, it is like an adapter.
A Docker container, on the other hand, is a runtime instance of a Docker image. It is a lightweight, isolated environment that runs the application defined by the Docker image. When you run a Docker image, it creates a container that encapsulates the application and its dependencies, allowing it to run consistently across different environments. In ioBroker notation, it is like an instance of an adapter.
- You need to have Docker installed and running on your system.
- The user running the ioBroker process must have permission to access the Docker daemon. This is typically done by adding the user to the
docker
group. Or just calliob fix
to set the permissions.
- For installation instructions, please refer to the official Docker documentation: https://docs.docker.com/get-docker/
- After installing Docker, ensure that the Docker service is running. You can check the status of the Docker service using the following command:
- On Linux:
systemctl status docker
- On Windows and macOS, Docker Desktop should be running.
- On Linux:
The adapter could use the Docker API to communicate with the Docker daemon on other hosts. To enable this feature, you need to configure the Docker daemon to listen on a TCP socket.
- Open the Docker service configuration file. The location of this file may vary depending on your Linux distribution. Common locations include:
/lib/systemd/system/docker.service
/etc/docker/daemon.json
/etc/systemd/system/docker.service
- If the file is
/etc/docker/daemon.json
, add or modify thehosts
entry to include the TCP socket. For example:If the file is a systemd service file (e.g.,{ "hosts": ["unix:///var/run/docker.sock", "tcp://0.0.0.0:2375"] }
/lib/systemd/system/docker.service
), modify theExecStart
line to include the-H tcp://0.0.0.0:2375
option. For example:ExecStart=/usr/bin/dockerd -H fd:// -H unix:///var/run/docker.sock -H tcp://0.0.0.0:2375 --containerd=/run/containerd/containerd.sock
- Save the changes and exit the editor.
- Restart the Docker service to apply the changes:
sudo systemctl daemon-reload sudo systemctl restart docker
- Verify that the Docker daemon is listening on the TCP socket by running:
netstat -tuln | grep 2375
- BackItUp should support
/opt/iobroker/docker-volumes
- Think about js-controller will remove dockers which are not used anymore but has label
- Docker Plugin like sentry??
- (@GermanBluefox) Added network tab
- (@GermanBluefox) Initial commit
The MIT License (MIT)
Copyright (c) 2025 bluefox dogafox@gmail.com