Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deployment: Fix minor versioning issues #54

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -133,4 +133,4 @@ MURDOCK_HTML_DIR=./murdock-html
## uvicorn access log logging level. Controls logging of endpoint access. These
## are logged at INFO level. Anything above suppresses logging of the individual
## endpoint access requests by clients.
UVICORN_LOG_LEVEL=info
UVICORN_LOG_LEVEL=INFO
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:latest
FROM ubuntu:jammy

LABEL maintainer="[email protected]"

Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ services:
- MURDOCK_NOTIFIER_MAIL_PASSWORD
- MURDOCK_NOTIFIER_MATRIX_ROOM
- MURDOCK_NOTIFIER_MATRIX_TOKEN
- UVICORN_LOG_LEVEL=info
- UVICORN_LOG_LEVEL=INFO
- CI_READY_LABEL
- CI_FASTTRACK_LABELS
volumes:
Expand Down Expand Up @@ -130,7 +130,7 @@ services:
- ${MURDOCK_PORT}:8081
- 9982:9982
volumes:
- ${PWD}/traefik:/etc/traefik
- ./traefik:/etc/traefik
environment:
- MURDOCK_PROJECT=${COMPOSE_PROJECT_NAME}
logging:
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ prometheus-fastapi-instrumentator
asyncpg
orjson
structlog
pydantic == 1.10
cysystemd
Loading