Skip to content

Latest commit

 

History

History
57 lines (44 loc) · 1.38 KB

File metadata and controls

57 lines (44 loc) · 1.38 KB

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

  1. Open http://localhost:8080 in your browser
  2. Find your admin token:
    • Linux: sudo cat /etc/glinrdock/config.toml | grep admin_token
    • Docker: docker-compose logs glinrdock | grep "Admin token"
  3. 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:
    • Name: nginx-demo
    • Image: nginx:alpine
    • Port: 80:8080
  4. Click Deploy
  5. 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"
  1. Import via web interface: ProjectsImport → Upload file

Next Steps

Need help? Check our troubleshooting guide.