Skip to content

v4.2.1

Choose a tag to compare

@github-actions github-actions released this 24 Feb 00:45
5c833b7

Automatic release for TailwindCSS v4.2.1

  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.1
    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.1 -i ./input.css -o ./output.css --watch

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