From 0a1bbd19bdc3d3c311cf6a57cd1f24f758f8f8a3 Mon Sep 17 00:00:00 2001 From: admin Date: Sun, 22 Feb 2026 19:20:05 +0100 Subject: [PATCH] feat(it-tools): neu integriert --- docker/it-tools/docker-compose.yml | 7 +++++++ docs/docker/it-tools/it-tools.md | 19 +++++++++++++++++++ mkdocs.yml | 5 +++-- 3 files changed, 29 insertions(+), 2 deletions(-) create mode 100644 docker/it-tools/docker-compose.yml create mode 100644 docs/docker/it-tools/it-tools.md diff --git a/docker/it-tools/docker-compose.yml b/docker/it-tools/docker-compose.yml new file mode 100644 index 0000000..256bdcf --- /dev/null +++ b/docker/it-tools/docker-compose.yml @@ -0,0 +1,7 @@ +services: + it-tools: + image: 'corentinth/it-tools:latest' # The Docker image to use. + ports: + - '8880:80' # Maps port 80 inside the container to port 8080 on the host. + restart: unless-stopped # Ensures the container restarts unless it is explicitly stopped. + container_name: it-tools # Custom name for the container. \ No newline at end of file diff --git a/docs/docker/it-tools/it-tools.md b/docs/docker/it-tools/it-tools.md new file mode 100644 index 0000000..deaaf22 --- /dev/null +++ b/docs/docker/it-tools/it-tools.md @@ -0,0 +1,19 @@ +# IT-Tools + +## Allgemein + + +- Image: `corentinth/it-tools:latest' ` +- Port: `8880:80` +- Restart Policy: `unless-stopped` + +## Volumes + +## Deployment + +```bash +cd /docker/Bruchtal/docker/it-tools +git pull +docker compose pull +docker compose up -d +`` diff --git a/mkdocs.yml b/mkdocs.yml index b1f3d25..6cef321 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -19,6 +19,7 @@ nav: - Adguardhome: docker/adguardhome/adguardhome.md - Wikijs: docker/wikijs/wikijs.md - Architektur: docker/architecture.md + - It-Tools: docker/it-tools/it-tools.md - Backup_Storage: - - Backup: backup/backup.md - - Storage: backup/storage.md \ No newline at end of file + - Backup: backup/backup.md + - Storage: backup/storage.md \ No newline at end of file