aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Dockerfile5
-rw-r--r--docker-compose.yaml3
-rw-r--r--requirements.txt6
3 files changed, 4 insertions, 10 deletions
diff --git a/Dockerfile b/Dockerfile
index 2e48e60..418ba9d 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,8 +1,7 @@
FROM python:3.11-slim
-LABEL org.opencontainers.image.source = "https://github.com/PacketParker/LinkLogger"
-
-MAINTAINER "parker <mailto:contact@pkrm.dev>"
+LABEL org.opencontainers.image.source="https://github.com/PacketParker/LinkLogger"
+LABEL maintainer="parker <mailto:contact@pkrm.dev>"
WORKDIR /
diff --git a/docker-compose.yaml b/docker-compose.yaml
index b6599b5..0f9f033 100644
--- a/docker-compose.yaml
+++ b/docker-compose.yaml
@@ -3,9 +3,6 @@ services:
container_name: linklogger
image: ghcr.io/packetparker/linklogger:latest
network_mode: host
- environment:
- - IP_TO_LOCATION=True
- - API_KEY=your_api_key
volumes:
- /path/on/system:/data
restart: on-failure \ No newline at end of file
diff --git a/requirements.txt b/requirements.txt
index d1864fc..2ef36d3 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -2,12 +2,10 @@ pydantic==2.6.2
ip2location-io==1.0.0
SQLAlchemy==2.0.27
ua-parser==0.18.0
-validators==0.22.0
-uvicorn==0.27.1
fastapi==0.110.0
-APScheduler==3.10.4
Flask==3.0.3
Flask-Login==0.6.3
a2wsgi==1.10.4
colorlog==6.8.2
-bcrypt==4.1.3 \ No newline at end of file
+bcrypt==4.1.3
+jsonschema==4.23.0 \ No newline at end of file