Install
The project has 2 components:
- Glacier — the core server
- Frost — the client component (similar to Steam)
- ❄️ Frost
- 🏔️ Glacier
- 🪟 Windows
- 🐧 Linux
## Windows Installation Download and run the Frost installer for Windows. ```powershell # Download the latest Frost installer winget install frost ``` Or grab the `.exe` from the [releases page](https://github.com/your-org/frost/releases) and run it. After installation, launch **Frost** from the Start Menu and sign in to connect to your Glacier server.
## Linux Installation ```bash # Debian / Ubuntu sudo apt install frost # Arch yay -S frost # Or via the install script curl -fsSL https://get.frost.sh | bash ``` After installation, start the client: ```bash frost ``` Sign in to connect to your Glacier server.
- 🐳 Docker
## Docker Installation Make sure you have [Docker](https://docs.docker.com/get-docker/) installed, then run: ```bash docker pull your-org/glacier:latest ``` Start the Glacier server: ```bash docker run -d \ --name glacier \ -p 8080:8080 \ -v glacier-data:/data \ your-org/glacier:latest ``` Or using **Docker Compose** — create a `docker-compose.yml`: ```yaml version: "3.9" services: glacier: image: your-org/glacier:latest container_name: glacier ports: - "8080:8080" volumes: - glacier-data:/data restart: unless-stopped volumes: glacier-data: ``` Then start it with: ```bash docker compose up -d ``` Glacier will be available at `http://localhost:8080`. Point your Frost client at this address to connect.