Oh okay
What is your output of your docker compose ls
NAME STATUS CONFIG FILES appwrite running(20) /usr/src/code/appwrite/docker-compose.yml
Then try this
docker compose -f /usr/src/code/appwrite/docker-compose.yml up -d
Same, no such file or directory error
Are you maybe inside some container?
As this path is not usually in Ubuntu.
I dont know, what do you mean with container?
What is the output of
uname -a
Linux ubuntu 5.15.0-72-generic #79-Ubuntu SMP Wed Apr 19 08:22:18 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
That seems fine.
Just had setup it today
Okay, let's take the long way
Run this to find all docker-compose.yml file in your server
find / -name "docker-compose.yml"
And edited docker compose file, that worked correctly, but now it trhows the error
What error?
not found
Result:
Is that Ok?
Good
Then this is your file
/root/appwrite/docker-compose.yml
Run
cd /root/appwrite
docker compose up -d
Or
docker compose -f /root/appwrite/docker-compose.yml up -d
That worked
Recreating containers, hope I don't run into a new error 😆
Let's hope 😄
[SOLVED] Appwrite default installation folder
Recommended threads
- How do I get my PR merged in auto genera...
https://github.com/appwrite/sdk-for-go/pull/48 I have raised this PR today in a sdk-generator repository which is a auto-generated repository. Now, as it is a a...
- 1:1 relationship doesn’t sync after re-a...
Hi, I’m trying to use a two-way one-to-one relationship. It works fine when I create a record with the relationship set, and it also works when I unset it. But ...
- Upsert with setting permissions
Hi there, I am using self-hosted appwrite v1.7.4 and trying to use the bulk update stuff that was released with 1.7.x. Unfortunally I found that there is an ser...