No description
Find a file
m1ngsama adcf0b1884 forgejo: use wget for healthcheck, add SQLite WAL mode
- wget is available in the forgejo image without extra deps (curl isn't)
- increase start_period to 60s for DB migration window
- enable SQLite WAL journal mode for better concurrent read performance
2026-04-15 10:03:30 +08:00
filesuite improve: best-practice configs for all projects, CLI UX overhaul 2026-04-15 10:02:41 +08:00
forgejo forgejo: use wget for healthcheck, add SQLite WAL mode 2026-04-15 10:03:30 +08:00
minecraft improve: best-practice configs for all projects, CLI UX overhaul 2026-04-15 10:02:41 +08:00
nextcloud improve: best-practice configs for all projects, CLI UX overhaul 2026-04-15 10:02:41 +08:00
tailscale improve: best-practice configs for all projects, CLI UX overhaul 2026-04-15 10:02:41 +08:00
teamspeak improve: best-practice configs for all projects, CLI UX overhaul 2026-04-15 10:02:41 +08:00
uptime-kuma improve: best-practice configs for all projects, CLI UX overhaul 2026-04-15 10:02:41 +08:00
.gitignore refactor: restructure as self-contained project dirs with interactive CLI 2026-04-15 09:54:23 +08:00
automa improve: best-practice configs for all projects, CLI UX overhaul 2026-04-15 10:02:41 +08:00
install.sh refactor: restructure as self-contained project dirs with interactive CLI 2026-04-15 09:54:23 +08:00
LICENSE chore: add project infrastructure files 2025-12-02 10:00:00 +08:00
README.md improve: best-practice configs for all projects, CLI UX overhaul 2026-04-15 10:02:41 +08:00

automa

Self-hosted Docker Compose project deployer. Interactive CLI for quick deployment.

Quick start

curl -fsSL https://raw.githubusercontent.com/m1ngsama/automa/main/install.sh | bash
cd ~/automa
./automa deploy

Usage

./automa deploy                      # interactive project selection
./automa deploy forgejo filesuite    # deploy specific projects
./automa status                      # check all project status
./automa logs forgejo                # follow logs
./automa stop forgejo                # stop a project
./automa update nextcloud            # pull latest images & recreate
./automa config tailscale            # reconfigure .env
./automa list                        # list available projects

Projects

Project Description
forgejo Self-hosted Git (Gitea fork)
uptime-kuma Uptime monitoring dashboard
tailscale Tailscale client + DERP relay server (profiles)
filesuite Cloudreve cloud storage + qBittorrent
minecraft Fabric Minecraft server
teamspeak TeamSpeak voice server
nextcloud Nextcloud with MariaDB + Redis

Structure

Each project is a self-contained directory:

project-name/
├── compose.yaml      # Docker Compose definition
├── .env.example      # Template — comments shown during setup
└── .env              # Your config (gitignored, created by CLI)

License

MIT