diff --git a/bin/docs_docker/Dockerfile b/bin/docs_docker/Dockerfile index 0b18ce0c5f..df78559201 100644 --- a/bin/docs_docker/Dockerfile +++ b/bin/docs_docker/Dockerfile @@ -1,4 +1,4 @@ -FROM redocly/redoc AS docs +FROM redocly/redoc:v2.5.1 AS docs COPY tequilapi/docs/swagger.json /usr/share/nginx/html/tequilapi.json diff --git a/docker-compose.e2e-basic.yml b/docker-compose.e2e-basic.yml index 1f277c6294..c6869a90d4 100644 --- a/docker-compose.e2e-basic.yml +++ b/docker-compose.e2e-basic.yml @@ -182,7 +182,7 @@ services: - ./e2e/transactor:/transactor redis: - image: bitnami/redis:6.2.14 + image: redis:6.2.14 container_name: 'hermes_redis' expose: - 6379 diff --git a/docker-compose.e2e-traversal.yml b/docker-compose.e2e-traversal.yml index 5e726f0cc3..38b15fdb86 100644 --- a/docker-compose.e2e-traversal.yml +++ b/docker-compose.e2e-traversal.yml @@ -394,7 +394,7 @@ services: ipv4_address: 172.31.0.213 redis: - image: bitnami/redis:6.2.14 + image: redis:6.2.14 container_name: 'hermes_redis' expose: - 6379 diff --git a/tequilapi/tequil/routes.go b/tequilapi/tequil/routes.go index 7fc5d2c84d..c8a5151c9c 100644 --- a/tequilapi/tequil/routes.go +++ b/tequilapi/tequil/routes.go @@ -23,7 +23,7 @@ import "strings" const TequilapiURLPrefix = "/tequilapi" // UnprotectedRoutes these routes are not protected by reverse proxy -var UnprotectedRoutes = []string{"/auth/authenticate", "/auth/login", "/healthcheck", "/config/user", "/config/ui/features"} +var UnprotectedRoutes = []string{"/auth/authenticate", "/auth/login", "/healthcheck", "/config/ui/features"} // IsUnprotectedRoute helper method for checking if route is unprotected func IsUnprotectedRoute(url string) bool {