binglab - This is my homelab site
Attachments
History
Blame
View Source
Changelog
Documentation
About An Otter Wiki
Toggle dark mode
Login
Home
A - Z
Docker Containers
Tools And Utilities
It-Tools
e311d5
Commit
e311d5
2025-05-14 18:22:32
MB Tech
: -/-
docker containers/tools and utilities/it-tools.md
..
@@ 10,6 10,51 @@
The project is **open-source**, self-hostable via **Docker**, and actively maintained with frequent updates.
Explore more on [GitHub](https://github.com/CorentinTh/it-tools).
+
# Setting Up Homepage with Docker Compose
+
+
## Introduction to it-tools
+
+
Useful tools for developer and people working in IT. List of twenty of the tools [a link](# IT Tools List)
+
+
## Docker Compose Configuration for it-tools
+
+
This Docker Compose setup deploys it-tools in a Docker container, offering an isolated environment for it-tools.
+
+
### Docker Compose File (`docker-compose.yml`)
+
+
```yaml
+
services:
+
it-tools:
+
image: 'corentinth/it-tools:latest'
+
ports:
+
- '8080:80'
+
restart: unless-stopped
+
container_name: it-tools
+
+
```
+
+
## Key Components of the Configuration
+
### Service: it-tools
+
- **Image**: `corentinth/it-tools:latest` is the Docker image used for it-tools.
+
- **Ports**:
+
- `8080:80` maps port 8080 on the host to port 80 in the container, where it-tools web interface is accessible.
+
- **Restart Policy**: `unless-stopped` ensures that the it-tools service restarts automatically unless stopped.
+
+
## Deploying it-tools
+
+
1. Save the Docker Compose configuration in a `docker-compose.yml` file.
+
2. Run `docker compose up -d` to start Homepage in detached mode.
+
3. Access Homepage by navigating to `http://<host-ip>:8080`.
+
+
## Configuring and Using it-tools
+
+
After deployment, Homepage is ready to use through its web interface.
+
+
+
## Youtube Video
+
<iframe width="560" height="315" src="https://www.youtube.com/embed/ha2E4E5baYk?si=DQYFsRrcfD-1hUeH" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
+
+
# IT Tools List
A collection of online utilities for **developers and IT professionals**.
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9