mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-02-22 14:33:06 +01:00
revert docker-compose user again as its impossible to create mounted direcotry as non root user (#4691)
This commit is contained in:
parent
d2f8811a1c
commit
49b2730f8c
2 changed files with 3 additions and 3 deletions
|
@ -23,7 +23,7 @@ For a complete guide on how to get started with Bitcoin-S, see our website at [B
|
|||
In this repo, you can just run
|
||||
|
||||
```
|
||||
APP_PASSWORD=topsecret BITCOIN_S_UID="$(id -u):$(id -g)" docker-compose up
|
||||
APP_PASSWORD=topsecret docker-compose up
|
||||
```
|
||||
|
||||
which will spin up a docker environment that starts syncing the backend and will allow you to visit
|
||||
|
|
|
@ -3,7 +3,7 @@ version: "3.7"
|
|||
services:
|
||||
web:
|
||||
image: bitcoinscala/wallet-server-ui:latest
|
||||
user: $BITCOIN_S_UID
|
||||
user: 0:1000
|
||||
restart: on-failure
|
||||
stop_grace_period: 1m
|
||||
volumes:
|
||||
|
@ -24,7 +24,7 @@ services:
|
|||
walletserver:
|
||||
image: bitcoinscala/bitcoin-s-server:latest
|
||||
entrypoint: ["/opt/docker/bin/bitcoin-s-server", "--datadir", "/bitcoin-s", "--conf", "/opt/docker/docker-application.conf"]
|
||||
user: $BITCOIN_S_UID
|
||||
user: 0:1000
|
||||
restart: on-failure
|
||||
volumes:
|
||||
- ./data/wallet:/bitcoin-s
|
||||
|
|
Loading…
Add table
Reference in a new issue