Skip to content

Commit

Permalink
[UPD] Update traefik version to 3.1.2 to avoid 3.0 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
josep-tecnativa committed Oct 16, 2024
1 parent 671912c commit 54c1956
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions common.yaml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ services:
environment:
POSTGRES_DB: *dbname
POSTGRES_USER: *dbuser
{%- if db_environment_extra %}
# Only for tests
{%- for key, value in db_environment_extra.items() %}
{{ key }}: '{{ value }}'
{%- endfor %}
{%- endif %}
CONF_EXTRA: |
work_mem = 512MB
volumes:
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def traefik_host(request):
docker = DockerClient()
if request.param == "3":
traefik_container = docker.run(
"traefik:v3.0",
"traefik:v3.1.2",
detach=True,
privileged=True,
networks=["inverseproxy_shared"],
Expand Down

0 comments on commit 54c1956

Please sign in to comment.