Docker Module
Documentation for the docker module
Container tooling and OCI image references.
Overview
Provides skopeo for OCI image operations (copy, inspect, list tags) and manages image reference definitions. Does not build images — see the containers/ module for that.
Files
| File | Description |
|---|---|
default.nix | Module entry point |
module.nix | Docker options and skopeo integration |
meta.nix | Module metadata |
Usage
stackpanel.docker = {
enable = true;
images.my-app = {
name = "my-app";
tag = "latest";
registry = "ghcr.io/my-org";
};
};