diff --git a/Dockerfile b/Dockerfile
index dea2cca0b..477d78497 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -18,8 +18,8 @@ COPY . /data
RUN uv sync --locked
#Healthcheck
-HEALTHCHECK --interval=30s --timeout=3s --start-period=10s --retries=3 \
- CMD curl -fs http://localhost:5690/health || exit 1
+#HEALTHCHECK --interval=30s --timeout=3s --start-period=10s --retries=3 \
+# CMD curl -fs http://localhost:5690/health || exit 1
EXPOSE 5690
diff --git a/app/templates/base.html b/app/templates/base.html
index 6634a3671..8408e86cd 100644
--- a/app/templates/base.html
+++ b/app/templates/base.html
@@ -7,7 +7,7 @@
-
+
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 000000000..c4c363e08
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,10 @@
+services:
+ wizarr:
+ build: .
+ ports:
+ - 5690:5690
+ volumes:
+ - ./test-data:/data/database
+ environment:
+ - APP_URL=http://127.0.0.1:5610
+ - TZ=Europe/London
\ No newline at end of file