Releases: BitCloud-Live/cli
Releases · BitCloud-Live/cli
V3.1.1
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
v3.0.5
V3.0.4
V3.0.4
- fix "minimum-scale"
- remove debug mode [ k8s not support restartPolicy == "never" ].