docker
docker 29.8.0
Open source project to pack, ship and run any application as a lightweight container
<rendered-html><p>Docker is a platform designed to help developers build, share, and run modern applications.</p> <p>To enable the docker daemon on NixOS, set the <code>virtualisation.docker.enable</code> option to <code>true</code>.</p> </rendered-html>
https://www.docker.com/Apache License 2.0
main program: dockerprograms: dockerd, dockerd-rootless, docker
Platforms (30)
armv7l-linuxmips64el-linuxi686-linuxmipsel-linuxriscv64-linuxpowerpc-linuxx86_64-freebsdpowerpc64le-linux
Install
Copy into your configuration
NixOS (configuration.nix)
environment.systemPackages = with pkgs; [ docker ];
Ad-hoc shell
nix-shell -p docker
Flake (nix run)
nix run nixpkgs#docker