27 lines
721 B
Markdown
27 lines
721 B
Markdown
|
# IT-Tools Docker Deployment
|
||
|
|
||
|
This repository provides a `docker-compose` configuration for deploying the IT-Tools container, which is accessible via Traefik as a reverse proxy.
|
||
|
|
||
|
## Prerequisites
|
||
|
- Docker and Docker Compose must be installed
|
||
|
- Traefik must be set up as a reverse proxy
|
||
|
|
||
|
## Installation
|
||
|
|
||
|
1. **Configure the `.env` file**
|
||
|
Rename the `.env-example` file to `.env` and update the file with your specific values. This file contains environment variables used by the Traefik service.
|
||
|
|
||
|
```bash
|
||
|
mv .env-example .env
|
||
|
```
|
||
|
Modify the .env file
|
||
|
```
|
||
|
|
||
|
2. **Start Docker-Compose**
|
||
|
|
||
|
```sh
|
||
|
docker-compose up -d
|
||
|
```
|
||
|
|
||
|
## Access
|
||
|
Once the container is running, IT-Tools will be available at the configured domain.
|