diff --git a/CHANGELOG b/CHANGELOG
index 1828b41..6a423fb 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+v3.13.3 - 16/01/2024
+- Add Docker compose
+
v3.13.2 - 16/01/2024
- Fix truncate CSS class name
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..197c3ee
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,24 @@
+# This is a docker compose file to demonstrate and test the mastodon-timeline widget
+# Run this docker CLI from the root repo directory:
+#
+# $ docker compose up
+
+version: '3.3'
+
+services:
+ lighttpd:
+ image: jitesoft/lighttpd
+ ports:
+ - "8080:80"
+ - "8443:443"
+ volumes:
+ - ./src/index.html:/var/www/index.html
+ - ./src/mastodon-timeline.js:/var/www/mastodon-timeline.js
+ - ./src/mastodon-timeline.css:/var/www/mastodon-timeline.css
+ environment:
+ - PORT=80
+ - SERVER_NAME=mastodon-timeline
+ - SERVER_ROOT=/var/www
+ - CONFIG_FILE=/etc/lighttpd/lighttpd.conf
+ - SKIP_HEALTHCHECK=false
+ - MAX_FDS=1024
diff --git a/src/index.html b/src/index.html
index 93545bf..67d86d0 100644
--- a/src/index.html
+++ b/src/index.html
@@ -7,7 +7,8 @@
-
+
+