mirror of
https://github.com/wizarrrr/wizarr.git
synced 2026-06-11 23:34:47 -04:00
added migrations
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<meta charset="utf-8">
|
||||
<link rel="stylesheet" href="{{ url_for('static',filename='css/main.css') }}" />
|
||||
<link rel="stylesheet" href="{{ url_for ('static', filename='node_modules/animate.css/animate.min.css') }}">
|
||||
<script src="{{ url_for('static', filename='node_modules/htmx.org/dist/htmx.min.js') }}"></script>
|
||||
<script src="{{ url_for('static', filename='node_modules/htmx.org/dist/htmx.min.js') }}"></script>
|
||||
<link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='favicon.ico') }}">
|
||||
|
||||
<meta name="viewport" content="initial-scale=1, width=device-width, viewport-fit=cover, user-scalable=no">
|
||||
|
||||
10
docker-compose.yml
Normal file
10
docker-compose.yml
Normal file
@@ -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
|
||||
Reference in New Issue
Block a user