Skip to content

Releases: BitCloud-Live/cli

V3.1.1

17 Jul 23:44
Compare
Choose a tag to compare
V3.1.1 Pre-release
Pre-release

Support The Docker Compose File

Compose is a tool for defining and running multi-container Docker applications. With Compose, you use a YAML file to configure your applications and services. Then, with a single command, you create and start all the applications and services from your configuration:

$: yb create compose --file="docker-compose.yml"


Here is a sample Compose file:

version: '3.2'

volumes:
  my-volume:

networks:
  internal:
  external:

services:
  db-mysql:
    labels:
      io.yottab.product: mysql
      io.yottab.plan: starter
    environment:
      - mysqlUser=mysql
      - mysqlDatabase=mysql
    networks:
      internal:

  nginx-test:
    image: "hub.yottab.io/test/nginx:latest"
    ports:
      - '80'
    labels:
      io.yottab.plan: default
    depends_on:
      - db-mysql
    volumes:
      - my-volume:/data
    environment:
      - JAVA_OPTIONS=-Dfcrepo.modeshape.configuration
    networks:
      external:

v3.1.0

04 Jul 18:27
Compare
Choose a tag to compare
  • add command: yb environment from-dotenv [app-name] [dotenv-file]
  • add the extra argument to the app create/update command for the management of general variables

v3.0.5

02 Jul 14:35
Compare
Choose a tag to compare
  • add sftp to application
  • api upgrade

V3.0.4

10 Jun 09:50
Compare
Choose a tag to compare

V3.0.4

v3.0.3

09 Jun 10:42
Compare
Choose a tag to compare

Create Application:

  • support private endpoint
  • rm image
  • support debug mode
    • $: yb create application --debug=true ....

V3.0.2

24 May 19:27
Compare
Choose a tag to compare

bug fix

  • the portforward command
  • attach domain

Create Application:

  • support debug mode
  • $: yb create application --debug=true ....

v3.0.1

22 May 08:36
Compare
Choose a tag to compare

Colorful Output

  • Colorized outputs in terms of ANSI Escape Codes
  • Support Application.Instances

yottab.io PaaS - YOTTAb Client

v3.0.0

19 May 16:30
Compare
Choose a tag to compare
version 3

v2.6.0

15 Feb 16:13
Compare
Choose a tag to compare

Changelog

  • Add run command: yb run -- command --option1 ...

v2.5.2

23 Jan 14:15
Compare
Choose a tag to compare
  • Switch to go module
  • Add docker build over git: yb push