Files
WallMuse/docs/WALLMUSE_INFRA_STATUS.md
2026-05-09 09:12:41 +00:00

26 lines
787 B
Markdown
Executable File

# WallMuse Infra Status
Infra files in this app are owned by the WallMuse-Infra workstream. Do not remove `infra/` or `scripts/health-check.sh` from other workstreams.
Completed files:
- `infra/docker-compose.yml`
- `infra/minio/create-buckets.sh`
- `infra/nginx/wallmuse.dev.conf`
- `infra/postgres/README.md`
- `scripts/health-check.sh`
Current external blocker: this server cannot currently resolve/reach apt and Docker registry hosts, so Node/npm/pnpm installation and Docker image pulls cannot complete until server DNS/network is fixed.
After network is fixed:
```bash
cd /root/wallmuse/app
apt-get update
apt-get install -y nodejs npm
npm install -g pnpm@10.12.1
pnpm install
docker compose -f infra/docker-compose.yml --env-file .env up -d
bash scripts/health-check.sh
```