mirror of
https://github.com/jakeswenson/BitBetter.git
synced 2025-07-13 06:53:25 +00:00
Update README.md
tested this with 1.32.0. added the use of docker-compose.override.yml als an alternative to edit docker-compose.yml directly.
This commit is contained in:
parent
a2189a874e
commit
dd32e49c24
15
README.md
15
README.md
|
@ -23,7 +23,7 @@ The following instructions are for unix-based systems (Linux, BSD, macOS), it is
|
||||||
## Dependencies
|
## Dependencies
|
||||||
Aside from docker, which you also need for Bitwarden, BitBetter requires the following:
|
Aside from docker, which you also need for Bitwarden, BitBetter requires the following:
|
||||||
|
|
||||||
* Bitwarden (tested up to 1.31.1)
|
* Bitwarden (tested up to 1.32.0)
|
||||||
* openssl (probably already installed on most Linux or WSL systems, any version should work)
|
* openssl (probably already installed on most Linux or WSL systems, any version should work)
|
||||||
|
|
||||||
## Setting up BitBetter
|
## Setting up BitBetter
|
||||||
|
@ -50,6 +50,19 @@ Edit your `/path/to/bwdata/docker/docker-compose.yml`.
|
||||||
|
|
||||||
> Replace `image: bitwarden/identity:x.xx.x`<br>with `image: bitbetter/identity`
|
> Replace `image: bitwarden/identity:x.xx.x`<br>with `image: bitbetter/identity`
|
||||||
|
|
||||||
|
Alternatively you can add `/path/to/bwdata/docker/docker-compose.override.yml` with the following content. This change will not be overwritten when updating BitWarden. Please note that you still need to comment out the `dockerComposePull` in `run.sh` after updating (see below).
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
version: '3'
|
||||||
|
|
||||||
|
services:
|
||||||
|
api:
|
||||||
|
image: bitbetter/api
|
||||||
|
|
||||||
|
identity:
|
||||||
|
image: bitbetter/identity
|
||||||
|
```
|
||||||
|
|
||||||
You'll also want to edit the `/path/to/bwdata/scripts/run.sh` file. In the `function restart()` block, comment out the call to `dockerComposePull`.
|
You'll also want to edit the `/path/to/bwdata/scripts/run.sh` file. In the `function restart()` block, comment out the call to `dockerComposePull`.
|
||||||
|
|
||||||
> Replace `dockerComposePull`<br>with `#dockerComposePull`
|
> Replace `dockerComposePull`<br>with `#dockerComposePull`
|
||||||
|
|
Loading…
Reference in New Issue
Block a user