update sndev docs and auto-start for capture service
This commit is contained in:
parent
b05c1b6734
commit
40e07be6d8
|
@ -104,7 +104,7 @@ COMMANDS
|
||||||
|
|
||||||
#### Running specific services
|
#### Running specific services
|
||||||
|
|
||||||
By default all services will be run. If you want to exclude specific services from running, set `COMPOSE_PROFILES` to use one or more of `minimal|images|search|payments|email`. To only run mininal services without images, search, or payments:
|
By default all services will be run. If you want to exclude specific services from running, set `COMPOSE_PROFILES` to use one or more of `minimal|images|search|payments|email|capture`. To only run mininal services without images, search, or payments:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
$ COMPOSE_PROFILES=minimal ./sndev start
|
$ COMPOSE_PROFILES=minimal ./sndev start
|
||||||
|
|
2
sndev
2
sndev
|
@ -10,7 +10,7 @@ docker__compose() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -z "$COMPOSE_PROFILES" ]; then
|
if [ -z "$COMPOSE_PROFILES" ]; then
|
||||||
COMPOSE_PROFILES="images,search,payments,email"
|
COMPOSE_PROFILES="images,search,payments,email,capture"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
CURRENT_UID=$(id -u) CURRENT_GID=$(id -g) COMPOSE_PROFILES=$COMPOSE_PROFILES command docker compose --env-file .env.development "$@"
|
CURRENT_UID=$(id -u) CURRENT_GID=$(id -g) COMPOSE_PROFILES=$COMPOSE_PROFILES command docker compose --env-file .env.development "$@"
|
||||||
|
|
Loading…
Reference in New Issue