Moved to _dev

This commit is contained in:
2025-09-20 16:11:47 +02:00
parent fb1a8753b7
commit b2ba11fcd3
1670 changed files with 224899 additions and 0 deletions

103
dokemon/agents.md Normal file
View File

@@ -0,0 +1,103 @@
## Dockémon Agents
### carlo
```
docker rm -f dokemon-agent > /dev/null 2>&1
docker run \
-e SERVER_URL=https://dkr.delmar.bzh \
-e TOKEN=eM+RtElaiYh3Gderr7iY0PQOoGgb8K72WWclSCsCj/gguQ4ZWqaLLQ== \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /home/pleb/.docker/config.json:/root/.docker/config.json \
--name dokemon-agent --restart unless-stopped \
-l "diun.enable=true" \
-d productiveops/dokemon-agent:latest
```
### gary
```
docker rm -f dokemon-agent > /dev/null 2>&1
docker run \
-e SERVER_URL=https://dkr.delmar.bzh \
-e TOKEN=oROLiE5gPwb8uzE+PvWk5rjbJGlKUgbcFfgROtipW9FhwCb3ry4PIg== \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /home/pleb/.docker/config.json:/root/.docker/config.json \
--name dokemon-agent --restart unless-stopped \
-l "diun.enable=true" \
-d productiveops/dokemon-agent:latest
```
### sandy
```
docker rm -f dokemon-agent > /dev/null 2>&1
docker run \
-e SERVER_URL=https://dkr.delmar.bzh \
-e TOKEN=w8FsCRmwVJXAKWGFR5vQksTMKS8qYZxavyuaaYKkyJnbg4Sf33P+MA== \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /home/pleb/.docker/config.json:/root/.docker/config.json \
--name dokemon-agent --restart unless-stopped \
-l "diun.enable=true" \
-d productiveops/dokemon-agent:latest
```
### krabs
```
docker rm -f dokemon-agent > /dev/null 2>&1
docker run \
-e SERVER_URL=https://dkr.delmar.bzh \
-e TOKEN=Fq1H2a86KMPxOOChn9IvxRBmWpVE+TRuQi6Wc3xf3rXo1QwDqwg8vQ== \
-v /var/run/docker.sock:/var/run/docker.sock \
--name dokemon-agent --restart unless-stopped \
-l "diun.enable=true" \
-d productiveops/dokemon-agent:latest
```
### bernie
```
docker rm -f dokemon-agent > /dev/null 2>&1
docker run \
-e SERVER_URL=https://dkr.delmar.bzh \
-e TOKEN=lfrM3ZQTgfNTCJhLaITaA+pGT/L+Tde2nRHZv82tkbrCGAM5C04B3w== \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /home/pleb/.docker/config.json:/root/.docker/config.json \
--name dokemon-agent --restart unless-stopped \
-l "diun.enable=true" \
-d productiveops/dokemon-agent:latest
```
#### Offline
### sheldon
```
docker rm -f dokemon-agent > /dev/null 2>&1
docker run \
-e SERVER_URL=https://dkr.delmar.bzh \
-e TOKEN=2JGydHhmgnoMW19uTG2yM3htsBahweW8NUbXgTQde66GCLIPSY0tVuk= \
-v /var/run/docker.sock:/var/run/docker.sock \
--name dokemon-agent --restart unless-stopped \
-d productiveops/dokemon-agent:latest
```
### pearl
```
docker rm -f dokemon-agent > /dev/null 2>&1
docker run \
-e SERVER_URL=https://dkr.delmar.bzh \
-e TOKEN=3hJ/Y7rSE673JHjtZ2Lbq8vVNBeFCV7fDQAMFKK2VX1YODhjLacR/A== \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /home/pleb/.docker/config.json:/root/.docker/config.json \
--name dokemon-agent --restart unless-stopped \
-l "diun.enable=true" \
-d productiveops/dokemon-agent:latest
```
## Docker login
### Password is stored unencrypted in /root/.docker/config.json
[Personnal Access Token](https://app.docker.com/settings/personal-access-tokens)
```bash
docker exec -it dokemon docker login -u jumaxotl
docker exec -it dokemon-agent docker login -u jumaxotl
```