xxx
Browse files- Dockerfile +1 -1
- __pycache__/app.cpython-39.pyc +0 -0
- mcp-server-mariadb-vector +1 -0
- todo.txt +7 -0
Dockerfile
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# you will also find guides on how best to write your Dockerfile
|
3 |
|
4 |
FROM python:3.9
|
5 |
-
|
6 |
RUN useradd -m -u 1000 user
|
7 |
USER user
|
8 |
ENV PATH="/home/user/.local/bin:$PATH"
|
|
|
2 |
# you will also find guides on how best to write your Dockerfile
|
3 |
|
4 |
FROM python:3.9
|
5 |
+
FROM mariadb:lts-ubi9
|
6 |
RUN useradd -m -u 1000 user
|
7 |
USER user
|
8 |
ENV PATH="/home/user/.local/bin:$PATH"
|
__pycache__/app.cpython-39.pyc
ADDED
Binary file (298 Bytes). View file
|
|
mcp-server-mariadb-vector
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit 68f4c79d13498021a1f09716849299da9dbc2338
|
todo.txt
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
docker run -p 3306:3306 \
|
2 |
+
--name mariadb-instance \
|
3 |
+
-e MARIADB_ROOT_PASSWORD=password \
|
4 |
+
-e MARIADB_DATABASE=work \
|
5 |
+
-e MARIADB_USER=theo \
|
6 |
+
-e MARIADB_PASSWORD=Kaballas \
|
7 |
+
mariadb:11.7
|