We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, Trying out Cypht to find a good webmail. I can't seem to be able to setup the secrets on the docker-compose to hide the passwords.
version: "3.5" services: cypht: image: sailfrog/cypht-docker:latest container_name: cypht restart: unless-stopped networks: - proxy volumes: - /etc/localtime:/etc/localtime:ro - ${HOME}/cypht/users:/var/lib/hm3/users - ${HOME}/cypht/app_data:/var/lib/hm3/app_data secrets: - cyphtpass - cyphtdbpass environment: - CYPHT_SESSION_TYPE=DB - CYPHT_AUTH_USERNAME=myuser - CYPHT_AUTH_PASSWORD_FILE=/run/secrets/cyphtpass - CYPHT_DB_CONNECTION_TYPE=host - CYPHT_DB_HOST=mariadb - CYPHT_DB_NAME=cypht - CYPHT_DB_USER=cypht - CYPHT_DB_PASS_FILE=/run/secrets/cyphtdbpass - CYPHT_DB_DRIVER=mysql - PUID=1000 - PGID=1000 networks: # proxy network to enable container access to internet proxy: external: true secrets: cyphtpass: file: ${HOME}/.secrets/cyphtpass cyphtdbpass: file: ${HOME}/.secrets/cyphtdbpass
It works fine without the secrets by putting the passwords (user and database) in clear in the file!
Any options to be able to hide those passwords would be welcome.
The text was updated successfully, but these errors were encountered:
The good, the bad and the ugly: We need a Docker expert to guide us!
Sorry, something went wrong.
No branches or pull requests
Hi,
Trying out Cypht to find a good webmail.
I can't seem to be able to setup the secrets on the docker-compose to hide the passwords.
It works fine without the secrets by putting the passwords (user and database) in clear in the file!
Any options to be able to hide those passwords would be welcome.
The text was updated successfully, but these errors were encountered: