25 lines
497 B
YAML
25 lines
497 B
YAML
# IT Tools - Developer utilities collection
|
|
# Port: 8085
|
|
# Collection of handy online tools for developers
|
|
version: '3.8'
|
|
|
|
services:
|
|
it-tools:
|
|
container_name: it-tools
|
|
image: corentinth/it-tools:latest
|
|
restart: unless-stopped
|
|
ports:
|
|
- "5545:80"
|
|
environment:
|
|
- TZ=UTC
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-size: "10k"
|
|
labels:
|
|
com.docker.compose.service.description: "IT Tools Dashboard"
|
|
|
|
networks:
|
|
default:
|
|
driver: bridge
|