Releases: BitCloud-Live/cli
Releases · BitCloud-Live/cli
V3.1.1
17 Jul 23:44
Compare
Sorry, something went wrong.
No results found
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
Sorry, something went wrong.
No results found
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
Sorry, something went wrong.
No results found
add sftp to application
api upgrade
V3.0.4
10 Jun 09:50
Compare
Sorry, something went wrong.
No results found
v3.0.3
09 Jun 10:42
Compare
Sorry, something went wrong.
No results found
Create Application:
support private endpoint
rm image
support debug mode
$: yb create application --debug=true ....
V3.0.2
24 May 19:27
Compare
Sorry, something went wrong.
No results found
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
Sorry, something went wrong.
No results found
Colorful Output
Colorized outputs in terms of ANSI Escape Codes
Support Application.Instances
v3.0.0
19 May 16:30
Compare
Sorry, something went wrong.
No results found
v2.6.0
15 Feb 16:13
Compare
Sorry, something went wrong.
No results found
Changelog
Add run command: yb run -- command --option1 ...
v2.5.2
23 Jan 14:15
Compare
Sorry, something went wrong.
No results found
Switch to go module
Add docker build over git: yb push