Blame

79f5e1 mb tech 2026-01-12 21:29:40
added it-tools
1
# It-Tools
2
39e616 mb tech 2026-01-13 15:03:22
updated
3
## compose.yml
79f5e1 mb tech 2026-01-12 21:29:40
added it-tools
4
```yaml
39e616 mb tech 2026-01-13 15:03:22
updated
5
---
79f5e1 mb tech 2026-01-12 21:29:40
added it-tools
6
services:
7
it-tools:
8
image: 'corentinth/it-tools:latest' # The Docker image to use.
9
ports:
10
- '8070:80' # Maps port 80 inside the container to port 8080 on the host.
11
restart: unless-stopped # Ensures the container restarts unless it is explicitly stopped.
12
container_name: it-tools # Custom name for the container.
13
```