Hi all,
I am struggling to get the Docker container to be able to login to the MariaDB container. The error I am getting is:
Googling that error is telling me it believes the URL is in a bad format, or that it does not recognize the driver.
Below is my podman-compose file. Do y'all see anything wrong with it? What am I messing up?
Thanks!
services:
mariadb:
image:
ghcr.io/linuxserver/mariadb container_name: mariadb
environment:
- MYSQL_ROOT_PASSWORD=root
- TZ=America/Chicago
volumes:
- /data/mysql-data:/config
network_mode: host
rundeck:
image: docker://rundeck/rundeck:3.4.10
container_name: rundeck
volumes:
- /data/rundeck-data:/home/rundeck/server/data
environment:
- RUNDECK_DATABASE_DRIVER=org.mariadb.jdbc.Driver
- RUNDECK_DATABASE_USERNAME="rundeckuser"
- RUNDECK_DATABASE_PASSWORD="rundeckpassword"
- RUNDECK_DATABASE_URL="jdbc:mysql://
127.0.0.1:3306/rundeck?autoReconnect=true&useSSL=false"
network_mode: host
depends_on:
- mariadb