mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
15 lines
668 B
Bash
Executable File
15 lines
668 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) 2020 Gitpod GmbH. All rights reserved.
|
|
# Licensed under the GNU Affero General Public License (AGPL).
|
|
# See License-AGPL.txt in the project root for license information.
|
|
|
|
set -euo pipefail
|
|
|
|
DOCKER_VERSION=20.10.17
|
|
DOCKER_COMPOSE_VERSION=2.8.0-gitpod.0
|
|
RUNC_VERSION=v1.1.4
|
|
|
|
curl -o docker.tgz -fsSL https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz
|
|
curl -o docker-compose -fsSL https://github.com/gitpod-io/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-linux-x86_64
|
|
curl -o runc -fsSL https://github.com/opencontainers/runc/releases/download/${RUNC_VERSION}/runc.amd64
|