Docker Apps Organization Using Docker Homepage

Search for a command to run...

No comments yet. Be the first to comment.
Statikly has evolve to Statikly Stack check out the new repo https://github.com/niradler/statikly-stack Statikly is a full-stack framework for developers who want to create SSR/static sites, great for blog/static/content sites, and excellent for pro...
Your team has 14 versions of the same code review skill across 5 repos, with no way to sync them. when one improves, the others don't. drop a folder in .claude/skills/ and pray nothing drifts. source

AI agents are unreasonably good at writing SQL. They get specific error messages, fix their own mistakes in one retry, and can introspect query performance with EXPLAIN ANALYZE before you even ask. No

n8n has over 400 integrations. Zapier claims 7,000+. Every single one was hand-built, tested against a moving API, and will eventually break when that API ships a v2. The entire workflow automation in

Part of the "Your Next Startup" series, where I break down startup ideas I think are worth building. Auth0 sold for \(6.5B. Okta is worth \)15B+. CyberArk, Delinea, BeyondTrust, all printing money fro

For as long as software has existed, we've been building two doors into our systems. Door one: the UI, a carefully designed surface where humans point, click, and occasionally rage-quit. Door two: the

doc-home is a way to manage and monitor your Docker containers from a graphical user interface.

To get started, simply run the following docker compose
version: "3.4"
services:
doc-home:
container_name: doc-home
image: niradler/doc-home
restart: always
environment:
NODE_ENV: production
STATIKLY_PASSWORD: ${STATIKLY_PASSWORD}
STATIKLY_USERNAME: ${STATIKLY_USERNAME}
ports:
- 3111:3001
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
Available environment variables:
# .env
STATIKLY_PASSWORD= # required, to make this optional remove basicAuth from statikly.json
STATIKLY_USERNAME= # required, to make this optional remove basicAuth from statikly.json
SSH_HOST= # optional
SSH_KEY_PATH= # optional
SSH_USERNAME= # optional
Add apps to the home page by adding docker labels to your running containers
version: "3.4"
services:
mongo_container:
container_name: mongo_service
image: mongo
labels:
- homepage.show=true
- homepage.description=proxy manager
- homepage.title=nginx-proxy-manager
- homepage.domain=https://proxy.niradler.com
ports:
- 3201:27017

Visit the Github Repo at https://github.com/niradler/doc-home