mirror of
https://github.com/basicswap/basicswap.git
synced 2024-12-22 19:49:20 +00:00
Add COINDATA_PATH to .env
This commit is contained in:
parent
24d4d14ff8
commit
519c7b717e
3 changed files with 4 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
FROM ubuntu:18.10
|
FROM ubuntu:18.10
|
||||||
|
|
||||||
ENV LANG C.UTF-8 \
|
ENV LANG=C.UTF-8 \
|
||||||
PARTICL_DATADIR="/coindata/particl" \
|
PARTICL_DATADIR="/coindata/particl" \
|
||||||
PARTICL_BINDIR="/opt/particl" \
|
PARTICL_BINDIR="/opt/particl" \
|
||||||
LITECOIN_BINDIR="/opt/litecoin" \
|
LITECOIN_BINDIR="/opt/litecoin" \
|
||||||
|
|
|
@ -1 +1,2 @@
|
||||||
HTML_PORT=127.0.0.1:12700:12700
|
HTML_PORT=127.0.0.1:12700:12700
|
||||||
|
COINDATA_PATH=./coindata
|
||||||
|
|
|
@ -6,7 +6,7 @@ services:
|
||||||
build:
|
build:
|
||||||
context: ../
|
context: ../
|
||||||
volumes:
|
volumes:
|
||||||
- ./coindata:/coindata
|
- ${COINDATA_PATH}:/coindata
|
||||||
ports:
|
ports:
|
||||||
- "${HTML_PORT}" # Expose only to localhost, see .env
|
- "${HTML_PORT}" # Expose only to localhost, see .env
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue