Skip to content

Commit

Permalink
Fix SortingHat static files path
Browse files Browse the repository at this point in the history
This commit updates the path for the SortingHat static files
served by NGINX due to the switch to a different Python version.

Signed-off-by: Jose Javier Merchante <[email protected]>
  • Loading branch information
jjmerchante committed Sep 3, 2024
1 parent 0dc113e commit cd8404d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker-compose/docker-compose-opensearch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ services:
expose:
- "9314"
volumes:
- sortinghat-static:/opt/venv/lib/python3.9/site-packages/sortinghat/static/
- sortinghat-static:/opt/venv/lib/python3.8/site-packages/sortinghat/static/
depends_on:
mariadb:
condition: service_healthy
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/docker-compose-secured.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ services:
expose:
- "9314"
volumes:
- sortinghat-static:/opt/venv/lib/python3.9/site-packages/sortinghat/static/
- sortinghat-static:/opt/venv/lib/python3.8/site-packages/sortinghat/static/
depends_on:
mariadb:
condition: service_healthy
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ services:
expose:
- "9314"
volumes:
- sortinghat-static:/opt/venv/lib/python3.9/site-packages/sortinghat/static/
- sortinghat-static:/opt/venv/lib/python3.8/site-packages/sortinghat/static/
depends_on:
mariadb:
condition: service_healthy
Expand Down

0 comments on commit cd8404d

Please sign in to comment.