Join the dark sideBe the first to know about new products, special releases, and much more.
7,449 people enjoy it!Subscribe to the RSS Feed.
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.
23.0+
);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.
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 .