KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
the-oops-bay
★ 14
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
android_emulator_cleaner
:
No description available.
ptable-amat
:
A Typst package for rendering periodic tables of elements
deepseek-ocr-2-client
:
No description available.
tinypic
:
TinyPic 是一款专为漫画/图片压缩设计的桌面工具,支持批量处理,自动双页裁剪,白边去除,视觉无损压缩。
sre-copilot
:
AI Powered SRE Observability agent
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
the-oops-bay
?
Download (.md)
# 🐳 The Oops Bay    **A simple, lightweight Docker dashboard for your homelab.** ---  --- ## ✨ Features * **Resources History:** See CPU & RAM usage charts for the last 24h (saved to SQLite). * **Lightweight:** Written in Go (Fiber) + React. Minimal footprint. * **Simple Control:** Start, Stop, Restart containers. * **Customization:** Give containers custom aliases and icons so they look nice. --- ## 🚀 Quick Start ### Docker CLI docker-compose.yml ```yaml services: the-oops-bay: image: medzhidovomar/the-oops-bay:latest container_name: the-oops-bay restart: unless-stopped ports: # - "127.0.0.1:3010:3000" # VPS/Cloud - "3010:3000" # Homelab volumes: - /var/run/docker.sock:/var/run/docker.sock - the-oops-bay_data:/root/data ``` ```docker compose up -d``` Note: Open at http://localhost:3010. The data folder is needed to save your icons and metrics history. 🔒 Security Note This app has no authentication. * Do not expose this directly to the internet. Use a VPN (Tailscale/Wireguard) or a Reverse Proxy (Nginx/Traefik) with Basic Auth if you need remote access. * Or bind to localhost only: -p 127.0.0.1:3010:3000. 📝 License GNU AGPL v3.0 Feel free to fork it or use it. If you fix my bugs, that's cool too.