choose this repository to deploy only traefik
Find a file
Guillaume "B.B." Van Hemmen 2f3caa4b5c #0000 - Add configuration for Traefik standalone setup
Added a `docker-compose.yml` to set up Traefik as a standalone reverse proxy with Docker Compose. Updated `README.md` for installation and usage instructions, and added `.gitignore`, `LICENSE`, and `.env.dist` files for environment configuration and licensing.
2024-10-09 17:30:14 +02:00
.env.dist #0000 - Add configuration for Traefik standalone setup 2024-10-09 17:30:14 +02:00
.gitignore #0000 - Add configuration for Traefik standalone setup 2024-10-09 17:30:14 +02:00
docker-compose.yml #0000 - Add configuration for Traefik standalone setup 2024-10-09 17:30:14 +02:00
LICENCE #0000 - Add configuration for Traefik standalone setup 2024-10-09 17:30:14 +02:00
README.md #0000 - Add configuration for Traefik standalone setup 2024-10-09 17:30:14 +02:00

Traefik Standalone

Introduction

This project sets up a standalone Traefik reverse proxy using Docker Compose. Traefik is a modern HTTP reverse proxy and load balancer that makes deploying microservices and integrating them with your existing infrastructure easy.

Table of Contents

Prerequisites

  • Docker: Make sure Docker is installed and running on your system.
  • Docker Compose: You also need Docker Compose to orchestrate the container setup.

Installation

  1. Clone the repository:

    git clone https://github.com/your-repository-url/traefik-standalone.git
    cd traefik-standalone
    
  2. Copy the environment variable template:

    cp .env.dist .env
    
  3. Customize the .env file as necessary for your environment.

Usage

  1. Start the Traefik service with Docker Compose:

    docker compose up -d
    
  2. You can now start adding your services and configure Traefik to reverse proxy to them.

License

This project is licensed under the terms of the MIT license. See the LICENSE file for details.