react-wordle icon indicating copy to clipboard operation
react-wordle copied to clipboard

Dockerised Wordle clone

React Wordle

Docker Pulls Docker Image Size (tag) Build Status GitHub last commit GitHub Workflow Status

This is a clone project of the popular word guessing game we all know and love. Made using React, Typescript, and Tailwind.

Modified by modem7 for github-pages.

Try it out!

Breaking changes note

This repo has now been merged with the old Worlde repo which had the old NYT container.

The reasoning for this is to lower maintenance across multiple repos and reduce build time.

There is also a Github pages version of "latest".

As such, there is a new configuration:

Latest

This is a new version of Wordle, created by cwackerfuss, and as such, it will not match with the latest "Word of the day".

Please see the configuration below to set this up.

Legacy

This is the original Worlde, cloned from the orignal website, and shunted into an Nginx container. This is as close as you'll get to the NYT version, and it should be in line with the latest word of the day.

This will not be updated, except for security updates and Nginx updates.

Please see the configuration below to set this up.

Configuration

Latest

Note: Sharing feature requires this to be hosted via https as per #331.

version: "2.4"

services:

  wordle:
    image: modem7/wordle:latest
    container_name: Wordle
    ports:
      - 80:8080

Legacy

version: "2.4"

services:

  wordle:
    image: modem7/wordle:legacy
    container_name: Wordle
    ports:
      - 80:80

Tags

Tag Description
latest Latest version
legacy Legacy version

Project Screenshot

image

Original Project

Cwackerfuss/React-Wordle