v-crn Code Log

主に備忘録

Blimp Commands

f:id:v-crn:20210404192842p:plain

Usage - Introduction | Blimp

# For a list of Blimp CLI commands
blimp help

# Log in to Kelda Blimp
blimp login

# Create and start containers
blimp up

# background run
blimp up -d

# Build images before starting containers
blimp up --build

# Delete your cloud sandbox
blimp down

# Clear volumes
blimp down -v

# Run a command in a service
blimp exec

# Expose a service (Public URLs)
blimp expose <SERVICE> <PORT>

# stop exposing the service
blimp expose --rm

# restarting services
blimp restart <SERVICE>

# getting logs
blimp logs

# starts a shell in a container
blimp ssh <SERVICE>
# <SERVICE> は docker-compose.yml 内で `services` 以下に記述したサービス名

# Copy files to and from services
blimp cp