Files
docs/Container Documentation/Docker/Docker Compose/IT-Tools.md
Nicole Rappe b9aeaabbfb Initial Commit
Bringing Documentation into Gitea
2023-12-21 01:15:09 -07:00

470 B

Purpose: Collection of handy online tools for developers, with great UX.

version: "3"

services:
  server:
    image: corentinth/it-tools:latest
    container_name: it-tools
    environment:
      - TZ=America/Denver
    restart: always
    ports:
      - "80:80"
    networks:
        docker_network:
          ipv4_address: 192.168.5.16

networks:
  docker_network:
    external: true
Not Applicable