feat: add support for specifying an initial-network property

This network is the network that is associated with the container on creation. If specified, then the bridge network is not attached to the service.

Only a single initial network can be specified at this time.
This commit is contained in:
Jose Diaz-Gonzalez
2023-02-07 14:31:11 -05:00
parent fbc5380a12
commit b6ccd491fd
6 changed files with 87 additions and 7 deletions

View File

@@ -44,6 +44,7 @@ redis:logs <service> [-t|--tail] <tail-num-optional> # print the most recent log
redis:pause <service> # pause a running redis service
redis:promote <service> <app> # promote service <service> as REDIS_URL in <app>
redis:restart <service> # graceful shutdown and restart of the redis service container
redis:set <service> <key> <value> # set or clear a property for a service
redis:start <service> # start a previously stopped redis service
redis:stop <service> # stop a running redis service
redis:unexpose <service> # unexpose a previously exposed redis service
@@ -250,6 +251,25 @@ You can unlink a redis service:
dokku redis:unlink lollipop playground
```
### set or clear a property for a service
```shell
# usage
dokku redis:set <service> <key> <value>
```
Set the network to attach after the service container is started:
```shell
dokku redis:set lollipop post-create-network custom-network
```
Unset the post-create-network value:
```shell
dokku redis:set lollipop post-create-network
```
### Service Lifecycle
The lifecycle of each service can be managed through the following commands: