Get GlinrDock running in minutes with this streamlined guide.
curl -fsSL https://github.com/GLINCKER/glinrdock-release/releases/latest/download/install.sh | sudo bashcurl -fsSL https://raw.githubusercontent.com/GLINCKER/glinrdock-release/main/deploy/docker-compose.yml -o docker-compose.yml
docker-compose up -d- 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"
- Linux:
- Log in with the admin token
- Navigate to Projects → New Project
- Create a project named "hello-world"
- Add a service:
- Name:
nginx-demo - Image:
nginx:alpine - Port:
80:8080
- Name:
- Click Deploy
- Access at http://localhost:8080
- Create a
docker-compose.ymlfile:
version: '3.8'
services:
web:
image: nginx:alpine
ports:
- "8080:80"- Import via web interface: Projects → Import → Upload file
Need help? Check our troubleshooting guide.