New addition: Wordle

This commit is contained in:
2023-09-14 20:35:46 +02:00
parent 4ad2804adf
commit 0c4c0702ad
2 changed files with 13 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
# Uncomment and change the following variables if you want to use them.
#RESTART=unless-stopped
#WORDLE_CONTAINER_NAME=Wordle
#WORDLE_TAG=latest
#WORDLE_PORT=3000
+8
View File
@@ -0,0 +1,8 @@
services:
# Wordle
wordle:
container_name: ${WORDLE_CONTAINER_NAME:-Wordle}
image: modem7/wordle:${WORDLE_TAG:-latest}
restart: ${RESTART:-unless-stopped}
ports:
- ${WORDLE_PORT:-8080}:8080