Skip to content

v4.2.2

Choose a tag to compare

@github-actions github-actions released this 19 Mar 00:49
5c833b7

Automatic release for TailwindCSS v4.2.2

  1. Create input.css in your project:
@import 'tailwindcss';
  1. Create docker-compose.yml in your project:
services:
  tailwindcss:
    image: ghcr.io/scriptogre/tailwindcss:4.2.2
    tty: true  # Required for watch mode
    volumes:
      - .:/app
    command: -i ./input.css -o ./output.css --watch
  1. Or run docker run command (note the -t flag is required for watch mode):
docker run -t -v "$(pwd)":/app \
  ghcr.io/scriptogre/tailwindcss:4.2.2 -i ./input.css -o ./output.css --watch

Container available at ghcr.io/scriptogre/tailwindcss:4.2.2