uncloud

GitHub

A lightweight tool for deploying and managing containerised applications across a network of Docker hosts. Bridging the gap between Docker and Kubernetes ✨

RAW Compose
1. Pull Image docker pull portainer/pause
2. 1-Click Launch Command docker run -d --name uncloud portainer/pause:3.9
3. Compose Deployment docker compose up -d
test/e2e/fixtures/compose-build-basic/compose.yaml
Download .yml
services:
  service-no-build:
    image: portainer/pause:3.9

  service-first:
    image: 127.0.0.1:${TEST_REGISTRY_PORT}/service-first
    build:
      context: service-first-dir/

  service-second:
    image: 127.0.0.1:${TEST_REGISTRY_PORT}/service-second:version2
    build:
      context: service-second-dir/
      dockerfile: Dockerfile.alt