docker
docker 29.5.3
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: docker, dockerd-rootless, dockerd
Platforms (31)
armv7a-linuxmicroblaze-linuxmipsel-linuxmips64-linuxaarch64-freebsds390-linuxi686-linuxmicroblazeel-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