File tree Expand file tree Collapse file tree 3 files changed +63
-2
lines changed
Expand file tree Collapse file tree 3 files changed +63
-2
lines changed Original file line number Diff line number Diff line change 1+ version : 2
2+ updates :
3+ - package-ecosystem : github-actions
4+ directory : /
5+ schedule :
6+ interval : daily
Original file line number Diff line number Diff line change 1+ # Changelog
2+
3+ All notable changes to this project will be documented in this file.
4+
5+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7+
8+ <!-- markdownlint-configure-file { "MD024": { "allow_different_nesting": true } } -->
9+
10+ ## [ 2.0.0] 2022-07-15
11+
12+ ### Added
13+
14+ - Add [ Dependabot] ( https://github.com/dependabot ) in CI.
15+ - This CHANGELOG file.
16+
17+ ### Changed
18+
19+ - Upgrade to [ Træfik] ( https://traefik.io/ ) [ v2] ( https://doc.traefik.io/traefik/migration/v1-to-v2/ ) syntax.
20+
21+ ## [ 1.0.0] 2022-07-15
22+
23+ ### Added
24+
25+ - Add DOLI_URL_ROOT environment variable
26+
27+ ### Changed
28+
29+ - Replace CI markdown check.
30+ - Use docker compose plugin in example.
31+ - Restart for Dolibarr and MySQL service.
32+
33+ ### Fixed
34+
35+ - Fix URL in README
36+
37+ ## [ 0.1.1] 2022-06-03
38+
39+ ### Fixed
40+
41+ - Add Traefik mention on README.
42+ - Fix LICENSE file.
43+
44+ ## [ 0.1.0] 2022-04-23
45+
46+ ### Added
47+
48+ - Docker-compose setup for starting Dolibarr with Træfik.
49+
50+ [ 2.0.0 ] : https://github.com/solution-libre/docker-dolibarr/compare/v1.0.0...v2.0.0
51+ [ 1.0.0 ] : https://github.com/solution-libre/docker-dolibarr/compare/v0.1.1...v1.0.0
52+ [ 0.2.0 ] : https://github.com/solution-libre/docker-dolibarr/compare/v0.1.0...v0.1.1
53+ [ 0.1.0 ] : https://github.com/solution-libre/docker-dolibarr/releases/tag/v0.1.0
Original file line number Diff line number Diff line change @@ -6,8 +6,10 @@ services:
66 DOLI_URL_ROOT : " https://${HOSTNAME}"
77 labels :
88 traefik.enable : ' true'
9- traefik.frontend.rule : " Host:${HOSTNAME}"
10- traefik.port : ' 80'
9+ traefik.http.routers.dolibarr.entrypoints : websecure
10+ traefik.http.routers.dolibarr.rule : " Host(`${HOSTNAME}`)"
11+ traefik.http.routers.dolibarr.tls.certresolver : myresolver
12+ traefik.http.services.dolibarr.loadbalancer.server.port : 80
1113 networks :
1214 - default
1315 - web
You can’t perform that action at this time.
0 commit comments