tailwindcss Tailwind Templates

Tailwindcss

Tiny container with Tailwind CSS CLI official binaries only (into scratch), that can help any project to make use of Tailwind CSS without requiring Node.js nor npm

Tailwind CSS (Angatar> d3fk/tailwindcss)

Tiny container image that only contains Tailwind CSS CLI official binaries (downloaded from Github official repository during the multistage build and poured into SCRATCH). The d3fk/tailwindcss containers will help any project to make use of the Tailwind CSS Framework without requiring Node.js nor npm

Docker image

Pre-build as multi-arch image from Docker hub with "automated build" option on the source repository.

  • image name: d3fk/tailwindcss

docker pull d3fk/tailwindcss

Docker hub repository: https://hub.docker.com/r/d3fk/tailwindcss/

Image TAGS

"d3fk/tailwindcss" images are provided as multi-arch images.

These multi-arch images will fit with the following architectures:

  • linux/amd64
  • linux/arm/v6
  • linux/arm/v7
  • linux/arm64/v8

--- Latest ---

  • d3fk/tailwindcss:latest tag provides you with the latest version of tailwindcss available: this container image is rebuilt on a regular basis.

This image tag is provided for the following architectures:

  • linux/amd64
  • linux/arm64/v8

--- v4.x.x ---

Tailwind css v4 is the current version and we will provide some stable versions across history to prevent any possible change that can occur in behaviours with version upgrading. The following stable tags are available, the name of the tag correspond to the Tailwind CSS version as a fixed version and won't be rebuild:

  • d3fk/tailwindcss:v4.0.9 tag provides you with a stable version of the tailwind CSS v4.0.9

These image tags are provided for the following architectures:

  • linux/amd64
  • linux/arm64/v8
  • --- v3---

  • d3fk/tailwindcss:v3 tag provides you with a stable version of the last tailwind CSS v3 (3.4.17) before v4 release: this container:stable image exists to avoid breaking changes and won't be rebuilt to avoid any possible change in its behaviour.

This multi-arch image will fit with the following architectures:

  • linux/amd64
  • linux/arm/v6
  • linux/arm/v7
  • linux/arm64/v8

--- Stable ---

  • d3fk/tailwindcss:stable tag provides you with our historical stable version having a fixed version of tailwind CSS (v3.3.2): this container:stable image exists to avoid breaking changes and won't be rebuilt to avoid any possible change in its behaviour.

This image tag is provided for the following architectures:

  • linux/amd64
  • linux/arm/v6
  • linux/arm/v7
  • linux/arm64/v8

Breaking Changes from v3 to v4

  • Tailwind CSS v4 introduces several breaking changes, including updates in configuration and renaming of utilities.
  • Ensure to review the official migration guide for detailed instructions on how to upgrade from v3 to v4.

Basic usage

docker run --rm -v $(pwd)/YOUR_PROJECT_DIR:/project \
       d3fk/tailwindcss \
       -i SRC_PATH/tailwind-input.css \
       -o CSS_PATH/tailwind-output.css

The container has /project for default WORKDIR so that the SRC_PATH(for your Tailwind CSS input file) and CSS_PATH(for your Tailwind CSS build output file) have to be relative to the /project directory which corresponds, here, to your local YOUR_PROJECT_DIR directory.

Make it watch for changes

As the files of the project are mounted into the container the --poll option has to be used in combination with the --watch option to make the container watch properly (by polling instead of using filesystem events) for any change in your source files that would require the output of your tailwind css file to be rebuilt.

docker run --rm -id --name tailwindcss-builder -v $(pwd)/YOUR_PROJECT_DIR:/project \
       d3fk/tailwindcss \
       -i SRC_PATH/tailwind-input.css \
       -o CSS_PATH/tailwind-output.css \
       --poll --watch

Note: we are suggesting to use docker run -id to let it watch in background (the -i option makes it hanging to stdout and -d is detaching the container) so that you can still use your current console and watch the build processes with docker logs tailwindcss-builder .You can then stop & remove (--rm) the container with docker stop tailwindcss-builder

Optimizing for Production

You can minify your output CSS by using the --minify flag

docker run --rm -v $(pwd)/YOUR_PROJECT_DIR:/project \
       d3fk/tailwindcss \
       -i SRC_PATH/tailwind-input.css \
       -o CSS_PATH/tailwind-output.css \
       --minify

Documentation

For full documentation, visit tailwindcss.com.

Upgrading Tailwind CSS to its last version

Simply pulling the latest tag again will get you our latest build of the d3fk/tailwindcss container image:

docker pull d3fk/tailwindcss:latest

In case you need an updated version ahead of our next update you can still rebuild your own image from the Dockerfile.

License

The content of this GitHub code repository is provided under MIT licence , as well as the embedded tailwindcss CLI, as stated in the Tailwind CSS official repository https://github.com/tailwindlabs/tailwindcss

Top categories

Loading Svelte Themes