
I have this Docker Compose file:
services:
# Band9Buddy app
band9buddy:
build:
context: .
dockerfile: Dockerfile.dev
develop:
watch:
- path: .
action: sync
target: /app
- path: package.json
action: rebuild
target: /app
ports:
- "5173:5173"
depends_on:
- appwrite-console
networks:
- appwrite-network
# AppWrite services
appwrite-console:
image: appwrite/console:latest
depends_on:
- mariadb
- redis
ports:
- "1900:80"
volumes:
- b9b-dev-appwrite-uploads:/storage/uploads
- b9b-dev-appwrite-cache:/storage/cache
- b9b-dev-appwrite-config:/storage/config
- b9b-dev-appwrite-certificates:/storage/certificates
- b9b-dev-appwrite-functions:/storage/functions
networks:
- appwrite-network
mariadb:
image: mariadb:12
volumes:
- b9b-dev-mariadb-data:/var/lib/mysql
networks:
- appwrite-network
redis:
image: redis:8
volumes:
- b9b-dev-redis-data:/data
networks:
- appwrite-network
volumes:
b9b-dev-appwrite-uploads:
b9b-dev-appwrite-cache:
b9b-dev-appwrite-config:
b9b-dev-appwrite-certificates:
b9b-dev-appwrite-functions:
b9b-dev-mariadb-data:
b9b-dev-redis-data:
networks:
appwrite-network:
driver: bridge
The problem is, When I head to localhost:1900
, I come across a page saying "The page you're looking for does not exist as in the image attached. URL is http://localhost:1900/console/onboarding/create-project
.

What about appwrite logs ?
docker compose logs
Recommended threads
- Upgrading Appwrite 1.7.4 → 1.8.x: What H...
I'm currently running a self-hosted Appwrite v1.7.4 instance that still uses the old Collections/Documents database model. I noticed that starting from v1.8.x,...
- Domain not working
My domain [fork-fable.appwrite.network](https://fork-fable.appwrite.network/) returns a 500 even after deleting and redeploying. Other domains added in domains ...
- File tokens regenerate each page reload
Hello, on appwrite 1.7.4, when I create a file token via the API Tokens(appwriteAdminClient)#createFileToken I get a secret, then when I check in the console t...
