docker containers/tools and utilities/it-tools.md ..
@@ 14,46 14,7 @@
## Introduction to it-tools
-
Useful tools for developer and people working in IT. [List of twenty of the tools](https://homelab.bingadventures.com/Docker%20Containers/Tools%20And%20Utilities/It-Tools#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
-
-
Video coming soon!!
+
Useful tools for developers and people working in IT.
## IT Tools List
@@ 93,3 54,43 @@
These tools are **open-source**, self-hostable via **Docker**, and actively maintained.
Explore more on [GitHub](https://github.com/CorentinTh/it-tools). 🚀
+
+
+
## 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.