-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Closed as not planned
Labels
mariadbsolvedstale15 days without activity15 days without activitytech-issuesThe user has a technical issue about an applicationThe user has a technical issue about an applicationtriageTriage is neededTriage is needed
Description
Name and Version
bitnami/mariadb:11.4
What architecture are you using?
amd64
What steps will reproduce the bug?
version: "3.1"
services:
db_server:
image: ${SSL_DB:-bitnami/mariadb:11.4}
environment:
MARIADB_BIND_ADDRESS: 0.0.0.0
MARIADB_USER: secure-user
MARIADB_PASSWORD: "${TESTSUITE_PASSWORD:-my-secret-pw}"
MARIADB_ROOT_PASSWORD: random-pass
MARIADB_CLIENT_ENABLE_SSL: yes
MARIADB_CLIENT_SSL_CA_FILE: /etc/phpmyadmin/ssl/ca-cert.pem
MARIADB_CLIENT_SSL_CERT_FILE: /etc/phpmyadmin/ssl/server-cert.pem
MARIADB_CLIENT_SSL_KEY_FILE: /etc/phpmyadmin/ssl/server-key.pem
healthcheck:
test: ["CMD", "mariadb-admin", "ping", "-uroot", "-prandom-pass"]
start_period: 10s
interval: 5s
timeout: 60s
retries: 10
networks:
testing:
aliases:
- phpmyadmin_testing_db
tmpfs:
- /var/lib/mysql:rw,noexec,nosuid,size=300m
volumes:
- ../ca-cert.pem:/etc/phpmyadmin/ssl/ca-cert.pem:ro
- ../ca-key.pem:/etc/phpmyadmin/ssl/ca-key.pem:ro
- ../server-cert.pem:/etc/phpmyadmin/ssl/server-cert.pem:ro
- ../server-key.pem:/etc/phpmyadmin/ssl/server-key.pem:ro
I login with the CLI to the user, it should throw me out since I do not use SSL.
What is the expected behavior?
Make it work and require ssl for clients.
What do you see instead?
It seems to have been added to 1b9e728
Bu no code to manage the new envs
Additional information
No response
Metadata
Metadata
Assignees
Labels
mariadbsolvedstale15 days without activity15 days without activitytech-issuesThe user has a technical issue about an applicationThe user has a technical issue about an applicationtriageTriage is neededTriage is needed