Blame
|
1 | # It-Tools |
||||||
| 2 | ||||||||
|
3 | ## compose.yml |
||||||
|
4 | ```yaml |
||||||
|
5 | --- |
||||||
|
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 | ``` |
|||||||
