Bunny
Connection to redis
I created redis database, but can't reach it from my service
But earlier I created postgress database and it works well
I found issue, my service with connection to postgress connected to dokploy-network, but second service with connection to redis isn't
Checked via
docker inspect --format='{{json .NetworkSettings.Networks}}' container name
Both services from same docker-compose file
7 replies
Multiline variables
I need to provide RSA key for one of my services(https://docs.saleor.io/setup/configuration#rsa_private_key)
I generated key via
openssl genrsa -out private-key.pem 3072
Converted to one liner via awk 'NF {sub(/\r/, ""); printf "%s\\n",$0;}' private-key.pem
But on deploy getting an error
How I can add variables like this?7 replies