vault backup: 2026-02-06 22:29:51

This commit is contained in:
2026-02-06 22:29:51 +01:00
parent 37c937ec98
commit 00534247ff
2 changed files with 32 additions and 0 deletions
+5
View File
@@ -1,3 +1,8 @@
---
tags:
- IT/Tools/MariaDB
- IT/Database
---
## FAQ
+27
View File
@@ -0,0 +1,27 @@
---
tags:
- IT/Tools/MongoDB
- IT/Database
---
## Installation
## Container
[[podman]]
```shell
podman volume create kontor-mongo
podman run -d --replace --pod kontor --name mongodb \
-e MONGO_INITDB_ROOT_USERNAME=kontor \
-e MONGO_INITDB_ROOT_PASSWORD=kontor \
-v kontor-mongo:/data/db \
docker.io/library/mongo:latest
podman run -d --replace --pod kontor --name mongo-express \
-e ME_CONFIG_MONGODB_SERVER="mongodb" \
-e ME_CONFIG_MONGODB_ADMINUSERNAME="kontor" \
-e ME_CONFIG_MONGODB_ADMINPASSWORD="kontor" \
-e ME_CONFIG_BASICAUTH_ENABLED="true" \
-e ME_CONFIG_BASICAUTH_USERNAME="kontor" \
-e ME_CONFIG_BASICAUTH_PASSWORD="kontor" \
docker.io/mongo-express:latest
```