Access Upstat
- ブラウザを開いて、次のURLにアクセスしてください:
http://<SERVER_IP>(HTTP) - Create your admin account immediately.
重要なファイルとディレクトリ
- Upstat installation directory:
/root/upstat - 環境ファイル:
/root/upstat/.env - Docker Compose ファイル:
/root/upstat/docker-compose.yml - Caddy configuration:
/root/upstat/Caddyfile - PostgreSQL データ量:
/var/lib/docker/volumes/upstat_postgres_data/_data - Caddy data and config volumes:
/var/lib/docker/volumes/upstat_caddy_data/_data,/var/lib/docker/volumes/upstat_caddy_config/_data
Manage the Stack
Go to the installation directory:
cd /root/upstat
Common Docker Compose commands:
# Check status
docker compose ps
# View logs (follow live)
docker compose logs -f
# Restart all services
docker compose restart
# Stop services
docker compose down
# Start again
docker compose up -d
Domain & HTTPS (Caddy)
0. HTTPS does NOT work with IP addresses.
1. Point a domain (e.g. upstat.example.com) to your server’s IP address.
2. Update Caddyfile:
upstat.example.com {
reverse_proxy web:3000
}
3. Restart services:
docker compose -f /root/alist/docker-compose.yml restart
4. Caddy will automatically issue and renew SSL certificates.
