does docker compose exec appwrite-worker-builds vars
show the right values?
It says no configuration file provided: not found
Nevermind, I was in the wrong dir
🤦♂️
It shows all the vars that are meant to be there and the values look to be correct
Actually, the client id, secret and webhook secret are showing as blank
that doesn't sound good 👀
actually that might be fine. is the privte key okay?
Yeah, the private keys is showing as it should. I’ve set the client and webhook vars in my .env file so not sure why they’re not appearing
The private key is appearing but it's showing as invalid using the function I've seen you post elsewhere but I'm not sure why as I haven't changed it and it was previously working
is it invalid if you test it against the appwrite container too?
It is, yeah
are you using something like portainer?
or is just basic, normal docker (compose)
It's just standard docker, it was originally created using the Appwrite starter on DigitalOcean
that's still just docker (compose) so it should be fine. can you DM me what you have in your .env file?
Yeah, sure thing
did this start happening after an upgrade?
thanks, the env var seems fine 🧐
I don't think so, it was having problems before I upgraded I think so I tried upgrading and that didn't fix it
what's the output of:
pwd
ls -la
/root/appwrite
total 384
drwxr-xr-x 2 root root 4096 Nov 1 18:22 .
drwx------ 7 root root 4096 Oct 31 22:08 ..
-rw-r--r-- 1 root root 5713 Oct 31 20:25 .env
-rw-r--r-- 1 root root 2994 Nov 26 2022 .env.1669481218.backup
-rw-r--r-- 1 root root 3064 Dec 10 2022 .env.1670711911.backup
-rw-r--r-- 1 root root 3064 Dec 28 2022 .env.1672232977.backup
-rw-r--r-- 1 root root 3064 Dec 28 2022 .env.1672233232.backup
-rw-r--r-- 1 root root 3172 Apr 13 2023 .env.1681410224.backup
-rw-r--r-- 1 root root 3283 May 28 14:37 .env.1685284657.backup
-rw-r--r-- 1 root root 3308 Jun 11 08:15 .env.1686471321.backup
-rw-r--r-- 1 root root 3375 Sep 11 15:43 .env.1694447004.backup
-rw-r--r-- 1 root root 3849 Sep 11 15:49 .env.1694447368.backup
-rw-r--r-- 1 root root 3873 Sep 11 15:56 .env.1694447793.backup
-rw-r--r-- 1 root root 3794 Oct 2 15:12 .env.1696259536.backup
-rw-r--r-- 1 root root 5713 Oct 10 11:22 .env.1696936943.backup
-rw-r--r-- 1 root root 5713 Oct 10 11:23 .env.1696937014.backup
-rw-r--r-- 1 root root 3208 Apr 13 2023 .env.save
-rw-r--r-- 1 root root 22666 Oct 31 20:25 docker-compose.yml
-rw-r--r-- 1 root root 18733 Nov 26 2022 docker-compose.yml.1669481218.backup
-rw-r--r-- 1 root root 17996 Dec 10 2022 docker-compose.yml.1670711911.backup
-rw-r--r-- 1 root root 17996 Dec 28 2022 docker-compose.yml.1672232977.backup
-rw-r--r-- 1 root root 18099 Dec 28 2022 docker-compose.yml.1672233232.backup
-rw-r--r-- 1 root root 18099 Apr 13 2023 docker-compose.yml.1681410224.backup
-rw-r--r-- 1 root root 18127 May 28 14:37 docker-compose.yml.1685284657.backup
-rw-r--r-- 1 root root 18127 Jun 11 08:15 docker-compose.yml.1686471321.backup
-rw-r--r-- 1 root root 21728 Sep 11 15:49 docker-compose.yml.1694447368.backup
-rw-r--r-- 1 root root 18127 Sep 11 15:56 docker-compose.yml.1694447793.backup
-rw-r--r-- 1 root root 21728 Oct 2 15:12 docker-compose.yml.1696259536.backup
-rw-r--r-- 1 root root 22710 Oct 10 11:22 docker-compose.yml.1696936943.backup
-rw-r--r-- 1 root root 22738 Oct 10 11:23 docker-compose.yml.1696937014.backup
-rw-r--r-- 1 root root 22761 Oct 31 20:25 docker-compose.yml.1698783934.backup
nothing nested so that's good...and you didn't modify your docker-compose.yml?
Nope, only ever changed it when I had to upgrade the openruntime but that was a while ago and it was still working after that
Recommended threads
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...
- Send Email Verification With REST
I am using REST to create a user on the server side after receiving form data from the client. After the account is successfully created i wanted to send the v...
- Use different email hosts for different ...
Hello, I have 2 projects and i want to be able to set up email templates in the projects. Both projects will have different email host configurations. I see ...