From d326984fc72fa6652d394fc6e8ec6fc4e2c85524 Mon Sep 17 00:00:00 2001 From: Matthieu B Date: Wed, 21 May 2025 17:15:36 +0100 Subject: [PATCH] added migrations --- Dockerfile | 4 ++-- app/templates/base.html | 2 +- docker-compose.yml | 10 ++++++++++ 3 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 docker-compose.yml 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