Skip to content

Commit

Permalink
v.2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorentPoinsaut committed Aug 23, 2023
1 parent 16ef44d commit 680dbe1
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.env
acme.json
compose.override.yaml
compose.override.yml
docker-compose.override.yaml
docker-compose.override.yml
log/
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

## [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`

## [2.0.0] 2022-07-15

### Added
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-2021 Solution Libre SAS
Copyright 2018-2023 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
11 changes: 4 additions & 7 deletions docker-compose.yml → compose.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
version: '3.3'

services:
traefik:
image: traefik:v2.8
restart: always
command:
- --providers.docker=true
- --providers.docker.exposedbydefault=false
Expand Down Expand Up @@ -32,18 +28,19 @@ 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
networks:
- web
ports:
- ${HTTP_PORT}:${HTTP_PORT}
- ${HTTPS_PORT}:${HTTPS_PORT}
# Enable API
#- 8080:8080
networks:
- web
restart: always
volumes:
- ./config:/etc/traefik:ro
- letsencrypt:/letsencrypt
- /var/run/docker.sock:/var/run/docker.sock:ro
container_name: traefik

networks:
web:
Expand Down

0 comments on commit 680dbe1

Please sign in to comment.