You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I created docker secret with password during runtime and mounted on "/run/secrets/" folder in docker container. I am able to see the file inside docker container with the password. However 'SPRING_POSTGRES_PASSWORD' is setup as "/run/secrets/db_pwd" instead of password. could you please help me to resolve this issue
Healenium Web version
3.5.4
Healenium Backend version
3.4.6
Selenium version
4.25.0
Platform
No response
Logs appeared during using Healenium
Exception during pool initialization. org.postgresql.util.PSQLException: FATAL: password authentication failed for user "healeniumuser
Additional context
No response
The text was updated successfully, but these errors were encountered:
Describe the problem
below is my docker compose file.
`version: "3.9"
services:
healenium:
image: healenium/hlm-backend:3.4.6
container_name: healenium
restart: on-failure
ports:
- "7878:7878"
environment:
- SPRING_POSTGRES_DB=healenium
- SPRING_POSTGRES_SCHEMA=healenium
- SPRING_POSTGRES_USER=healeniumuser
- SPRING_POSTGRES_PASSWORD=/run/secrets/db_pwd
- SPRING_POSTGRES_DB_HOST= localhost
- KEY_SELECTOR_URL=false
- COLLECT_METRICS=true
- HLM_LOG_LEVEL=debug
volumes:
- ./screenshots/:/screenshots
- ./logs/:/logs
networks:
- healenium
secrets:
- db_pwd
selector-imitator:
image: healenium/hlm-selector-imitator:1.4
container_name: selector-imitator
restart: on-failure
ports:
- "8000:8000"
networks:
- healenium
secrets:
db_pwd:
file: db_pwd.txt
networks:
healenium:
name: healenium`
I created docker secret with password during runtime and mounted on "/run/secrets/" folder in docker container. I am able to see the file inside docker container with the password. However 'SPRING_POSTGRES_PASSWORD' is setup as "/run/secrets/db_pwd" instead of password. could you please help me to resolve this issue
Healenium Web version
3.5.4
Healenium Backend version
3.4.6
Selenium version
4.25.0
Platform
No response
Logs appeared during using Healenium
Additional context
No response
The text was updated successfully, but these errors were encountered: