Skip to content

GlinrDock Quick Start

Get GlinrDock running in minutes with this streamlined guide.

Installation

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

  1. Open http://localhost:8080 in your browser
  2. Find your admin token:
  3. Linux: sudo cat /etc/glinrdock/config.toml | grep admin_token
  4. Docker: docker-compose logs glinrdock | grep "Admin token"
  5. Log in with the admin token

Deploy Your First Container

Using the Web Interface

  1. Navigate to ProjectsNew Project
  2. Create a project named "hello-world"
  3. Add a service:
  4. Name: nginx-demo
  5. Image: nginx:alpine
  6. Port: 80:8080
  7. Click Deploy
  8. Access at http://localhost:8080

Using Docker Compose Import

  1. Create a docker-compose.yml file:

    version: '3.8'
    services:
      web:
        image: nginx:alpine
        ports:
          - "8080:80"
    

  2. Import via web interface: ProjectsImport → Upload file

Next Steps

Need help? Check our troubleshooting guide.