GlinrDock Quick Start¶
Get GlinrDock running in minutes with this streamlined guide.
Installation¶
Linux (Recommended)¶
curl -fsSL https://github.com/GLINCKER/glinrdock-release/releases/latest/download/install.sh | sudo bash
Docker Compose¶
curl -fsSL https://raw.githubusercontent.com/GLINCKER/glinrdock-release/main/deploy/docker-compose.yml -o docker-compose.yml
docker-compose up -d
First Access¶
- Open http://localhost:8080 in your browser
- Find your admin token:
- Linux:
sudo cat /etc/glinrdock/config.toml | grep admin_token
- Docker:
docker-compose logs glinrdock | grep "Admin token"
- Log in with the admin token
Deploy Your First Container¶
Using the Web Interface¶
- Navigate to Projects → New Project
- Create a project named "hello-world"
- Add a service:
- Name:
nginx-demo
- Image:
nginx:alpine
- Port:
80:8080
- Click Deploy
- Access at http://localhost:8080
Using Docker Compose Import¶
-
Create a
docker-compose.yml
file: -
Import via web interface: Projects → Import → Upload file
Next Steps¶
Need help? Check our troubleshooting guide.