Skip to content

Commit

Permalink
Expose the Default Traefik Log Level variable
Browse files Browse the repository at this point in the history
Instead of hiding it in the documentation and in the
docker-compose.acme.yml and docker-compose.traefik.yml files, adding it
to the sample.env file
  • Loading branch information
misilot committed Nov 9, 2022
1 parent 1279b7d commit b4d2ede
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build/docker-compose/docker-compose.acme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
- --entryPoints.activemq.address=:8161
- --entryPoints.solr.address=:8983
- --entryPoints.code-server.address=:8443
- --log.level=${TRAEFIK_LOG_LEVEL-ERROR}
- --log.level=${TRAEFIK_LOG_LEVEL:-ERROR}
- --providers.docker
- --providers.docker.network=gateway
- --providers.docker.exposedByDefault=false
Expand Down
1 change: 1 addition & 0 deletions sample.env
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ PROJECT_DRUPAL_DOCKERFILE=Dockerfile
# Includes `traefik` as a service, if false assume we are sharing a traefik
# from another project.
INCLUDE_TRAEFIK_SERVICE=true
TRAEFIK_LOG_LEVEL=ERROR

# Should we use ACME to generate a SSL Certificate
USE_ACME=false
Expand Down

0 comments on commit b4d2ede

Please sign in to comment.