Skip to content

Commit

Permalink
v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorentPoinsaut committed Jun 1, 2024
1 parent 178716f commit 2c8f83c
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 4 deletions.
1 change: 1 addition & 0 deletions .env.dist
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ ACME_TLS_CHALLENGE=true
DEFAULT_DOMAIN=my.domain.tld
HTTP_PORT=80
HTTPS_PORT=443
VERSION='v2.11'
17 changes: 15 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,26 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

<!-- markdownlint-configure-file { "MD024": { "allow_different_nesting": true } } -->
<!-- markdownlint-configure-file { "MD024": { "siblings_only": true } } -->

## [2.2.0] 2024-06-01

### Added

- Environement variable `VERSION` to set Træfik version
- CLI option to enable the Prometheus metrics

### Changed

- Upgrade to [Træfik](https://traefik.io/) [v2.11](https://doc.traefik.io/traefik/v2.11/).
- Rename the `docker-volumes` file to `volumes`

## [2.1.0] 2023-08-23

### Changed

- Upgrade to [Træfik](https://traefik.io/) [v2.10](https://doc.traefik.io/traefik/v2.10/).
- Rename the `docker-compose.yml` file to `compose.yml`
- Rename the `docker-compose.yml` file to `compose.yaml`

## [2.0.0] 2022-07-15

Expand Down Expand Up @@ -64,6 +76,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [Docker Compose](https://docs.docker.com/compose/) setup for starting [Træfik](https://traefik.io/)
[v1.6](https://doc.traefik.io/traefik/v1.6/) with [Let's Encrypt](https://letsencrypt.org/).

[2.2.0]: https://github.com/solution-libre/docker-traefik/compare/v2.1.0...v2.2.0
[2.1.0]: https://github.com/solution-libre/docker-traefik/compare/v2.0.0...v2.1.0
[2.0.0]: https://github.com/solution-libre/docker-traefik/compare/v1.3.0...v2.0.0
[1.3.0]: https://github.com/solution-libre/docker-traefik/compare/v1.2.0...v1.3.0
Expand Down
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Træfik with Docker Compose

Copyright 2018-2023 Solution Libre SAS
Copyright 2018-2024 Solution Libre SAS

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 3 additions & 1 deletion compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ services:
#- --certificatesresolvers.myresolver.acme.caserver=https://acme-staging-v02.api.letsencrypt.org/directory
# Controls whether the server's certificate chain and host name is verified
#- --serverstransport.insecureskipverify=true
image: traefik:v2.10
# To enable the Prometheus metrics
#- --metrics.prometheus=true
image: traefik:${VERSION}
networks:
- web
ports:
Expand Down
File renamed without changes.

0 comments on commit 2c8f83c

Please sign in to comment.