I got this far reading docker.com as well as a post regarding TT-RSS here but nothing is working
Having trouble connecting these two separate containers
mariadb setup
docker create
–name=mariadb
-e PUID=1000
-e PGID=1000
-e MYSQL_ROOT_PASSWORD=b07t!0+R
-e TZ=America/Regina
-p 3306:3306
-v /server/data/mariadb:/config
–restart unless-stopped
–net databasenetwork
linuxserver/mariadb
projectsend setup
docker create
–name=projectsend
-e PUID=1000
-e PGID=999
-e TZ=America/Regina
-e MAX_UPLOAD=4096
-p 5555:80
-v /server/data/projectsend/config:/config
-v /server/data/projectsend/data:/data
–restart unless-stopped
–net databasenetwork
linuxserver/projectsend
Network setup
NETWORK ID NAME DRIVER SCOPE
xxxxxxxxxxx databasenetwork bridge local
When I go to the projectsend site on my system to configure the database I cannot figure out what to put in the settings
Select Driver: MySQL
Host: ??? (have tried localhost, mariadb, the ip from the network inspect, the sites address both FQDN and ip)(all by themselves and with :3306 after them.
Database Name: xxxx
Username: xxxx
Password: xxxx
I have gone into the mariadb container and setup the database and user privileges, I think if I can get the host right the others will turn green checks (vs Red warning signs)
Len