add wallets profile to allow exclusion on attached wallet containers
This commit is contained in:
parent
e0f91ace41
commit
f05b6fab84
|
@ -104,7 +104,7 @@ COMMANDS
|
|||
|
||||
#### 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|capture`. 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|wallets|email|capture`. To only run mininal services without images, search, email, wallets, or payments:
|
||||
|
||||
```sh
|
||||
$ COMPOSE_PROFILES=minimal ./sndev start
|
||||
|
|
|
@ -373,7 +373,7 @@ services:
|
|||
build:
|
||||
context: ./docker/litd
|
||||
profiles:
|
||||
- payments
|
||||
- wallets
|
||||
restart: unless-stopped
|
||||
healthcheck:
|
||||
<<: *healthcheck
|
||||
|
@ -479,7 +479,7 @@ services:
|
|||
context: ./docker/nwc
|
||||
container_name: nwc
|
||||
profiles:
|
||||
- payments
|
||||
- wallets
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
stacker_lnd:
|
||||
|
@ -509,7 +509,7 @@ services:
|
|||
image: lnbits/lnbits:0.12.5
|
||||
container_name: lnbits
|
||||
profiles:
|
||||
- payments
|
||||
- wallets
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "${LNBITS_WEB_PORT}:5000"
|
||||
|
|
Loading…
Reference in New Issue