diff --git a/wordle/.env.sample b/wordle/.env.sample new file mode 100644 index 0000000..08182fb --- /dev/null +++ b/wordle/.env.sample @@ -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 diff --git a/wordle/compose.yml b/wordle/compose.yml new file mode 100644 index 0000000..6096b63 --- /dev/null +++ b/wordle/compose.yml @@ -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