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
- encrypt and decrypt buckets
I have a bucket where I switched from encryption to not encrypting files. I later realized that files already uploaded earlier stay encrypted. Now I have a buck...
- Unable to Create Storage After Upgrading...
We upgraded our Appwrite instance from version 1.8.0 to 1.9.0 and successfully ran the migration process. However, after the upgrade, we are no longer able to c...
- SSL certificate generation failed even t...
Hello, I have an Appwrite Site for which I added a custom domain. However, even though the domain is verified, the SSL certificate generation is failing. It is ...