Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/angatar/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
https://github.com/angatar/tailwindcss
container css css-framework docker functional-css postcss responsive tailwindcss utility-classes
Last synced: 5 days ago
JSON representation
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
- Host: GitHub
- URL: https://github.com/angatar/tailwindcss
- Owner: Angatar
- License: mit
- Created: 2023-05-26T13:50:35.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-10T08:26:07.000Z (2 months ago)
- Last Synced: 2024-09-10T10:38:58.562Z (2 months ago)
- Topics: container, css, css-framework, docker, functional-css, postcss, responsive, tailwindcss, utility-classes
- Language: Shell
- Homepage:
- Size: 24.4 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Docker Pulls](https://badgen.net/docker/pulls/d3fk/tailwindcss?icon=docker&label=pulls&cache=600)](https://hub.docker.com/r/d3fk/tailwindcss/tags) [![Docker Image Size](https://badgen.net/docker/size/d3fk/tailwindcss/latest?icon=docker&label=image%20size&cache=600)](https://hub.docker.com/r/d3fk/tailwindcss/tags) [![Docker build](https://img.shields.io/badge/automated-automated?style=flat&logo=docker&logoColor=blue&label=build&color=green&cacheSeconds=600)](https://hub.docker.com/r/d3fk/tailwindcss/tags) [![Docker Stars](https://badgen.net/docker/stars/d3fk/tailwindcss?icon=docker&label=stars&color=green&cache=600)](https://hub.docker.com/r/d3fk/tailwindcss) [![Github Stars](https://img.shields.io/github/stars/Angatar/tailwindcss?label=stars&logo=github&color=green&style=flat&cacheSeconds=600)](https://github.com/Angatar/tailwindcss) [![Github forks](https://img.shields.io/github/forks/Angatar/tailwindcss?logo=github&style=flat&cacheSeconds=600)](https://github.com/Angatar/tailwindcss/fork) [![Github open issues](https://img.shields.io/github/issues-raw/Angatar/tailwindcss?logo=github&color=yellow&cacheSeconds=600)](https://github.com/Angatar/tailwindcss/issues) [![Github closed issues](https://img.shields.io/github/issues-closed-raw/Angatar/tailwindcss?logo=github&color=green&cacheSeconds=600)](https://github.com/Angatar/tailwindcss/issues?q=is%3Aissue+is%3Aclosed) [![GitHub license](https://img.shields.io/github/license/Angatar/tailwindcss)](https://github.com/Angatar/tailwindcss/blob/master/LICENSE)
# 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/
[![DockerHub Badge](https://dockeri.co/image/d3fk/tailwindcss)](https://hub.docker.com/r/d3fk/tailwindcss)
### Image TAGS
***"d3fk/tailwindcss:latest" and "d3fk/tailwindcss:stable" are both 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 last version of tailwindcss available: this container image is rebuilt on a regular basis.
#### --- Stable ---
- **d3fk/tailwindcss:stable** tag provides you with a fixed version of tailwind CSS (v3.3.2): this container:stable image won't be rebuilt to **avoid any possible change** in its behaviour.
## Basic usage
```sh
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.
```sh
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
```sh
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](https://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](https://github.com/Angatar/tailwindcss) is provided under **MIT** licence
[![GitHub license](https://img.shields.io/github/license/Angatar/tailwindcss)](https://github.com/Angatar/tailwindcss/blob/master/LICENSE), as well as the embedded **tailwindcss CLI**, as stated in the Tailwind CSS official repository https://github.com/tailwindlabs/tailwindcss