§Docker
This theme customizes Docker BuildKit output colors to match the Dracula color scheme. BuildKit is Docker's improved build system that provides enhanced build output formatting.
§Requirements
- Docker with BuildKit enabled (default in Docker
23.0+
); - Docker Desktop or Docker Engine.
§Installation
Add the following to your shell configuration file (.bashrc
, .zshrc
, etc.):
# Dracula theme for Docker BuildKit - https://draculatheme.com/docker
export BUILDKIT_COLORS="run=189,147,249:cancel=241,250,140:error=255,85,85:warning=241,250,140"
Color Scheme:
- run: Purple (
#bd93f9
) - running build steps;- cancel: Yellow (
#f1fa8c
) - cancelled operations;- error: Red (
#ff5555
) - error messages;- warning: Yellow (
#f1fa8c
) - warning messages.
§Activating theme
After adding the configuration, restart your shell or run source ~/.bashrc
(or your respective config file) to apply the changes.
👉🏻 Usage:
The theme will automatically apply to Docker build commands:
docker build .
docker buildx build .