mirror of
https://github.com/basicswap/basicswap.git
synced 2024-12-22 19:49:20 +00:00
Raise version.
Explicitly set docker logging.
This commit is contained in:
parent
5beb1d17b9
commit
b6ece37a8d
3 changed files with 31 additions and 1 deletions
|
@ -1,3 +1,3 @@
|
||||||
name = "basicswap"
|
name = "basicswap"
|
||||||
|
|
||||||
__version__ = "0.0.16"
|
__version__ = "0.0.17"
|
||||||
|
|
|
@ -12,6 +12,11 @@ services:
|
||||||
- "${HTML_PORT}" # Expose only to localhost, see .env
|
- "${HTML_PORT}" # Expose only to localhost, see .env
|
||||||
environment:
|
environment:
|
||||||
- TZ
|
- TZ
|
||||||
|
logging:
|
||||||
|
driver: "local"
|
||||||
|
options:
|
||||||
|
max-size: "10m"
|
||||||
|
max-file: "5"
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
coindata:
|
coindata:
|
||||||
|
|
|
@ -13,6 +13,11 @@ services:
|
||||||
- "51738:51738"
|
- "51738:51738"
|
||||||
expose:
|
expose:
|
||||||
- 51735
|
- 51735
|
||||||
|
logging:
|
||||||
|
driver: "local"
|
||||||
|
options:
|
||||||
|
max-size: "10m"
|
||||||
|
max-file: "3"
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
bitcoin_core:
|
bitcoin_core:
|
||||||
image: i_bitcoin
|
image: i_bitcoin
|
||||||
|
@ -26,6 +31,11 @@ services:
|
||||||
- "8333:8333"
|
- "8333:8333"
|
||||||
expose:
|
expose:
|
||||||
- 8332
|
- 8332
|
||||||
|
logging:
|
||||||
|
driver: "local"
|
||||||
|
options:
|
||||||
|
max-size: "10m"
|
||||||
|
max-file: "3"
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
#monero_daemon:
|
#monero_daemon:
|
||||||
#image: i_monero_daemon
|
#image: i_monero_daemon
|
||||||
|
@ -39,6 +49,11 @@ services:
|
||||||
#- "18080:18080"
|
#- "18080:18080"
|
||||||
#expose:
|
#expose:
|
||||||
#- 8332
|
#- 8332
|
||||||
|
#logging:
|
||||||
|
#driver: "local"
|
||||||
|
#options:
|
||||||
|
#max-size: "10m"
|
||||||
|
#max-file: "3"
|
||||||
#restart: unless-stopped
|
#restart: unless-stopped
|
||||||
monero_wallet:
|
monero_wallet:
|
||||||
image: i_monero_wallet
|
image: i_monero_wallet
|
||||||
|
@ -50,6 +65,11 @@ services:
|
||||||
- /var/swapdata/monero_wallet:/data
|
- /var/swapdata/monero_wallet:/data
|
||||||
expose:
|
expose:
|
||||||
- 8332
|
- 8332
|
||||||
|
logging:
|
||||||
|
driver: "local"
|
||||||
|
options:
|
||||||
|
max-size: "10m"
|
||||||
|
max-file: "3"
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
swapclient:
|
swapclient:
|
||||||
image: i_swapclient
|
image: i_swapclient
|
||||||
|
@ -63,6 +83,11 @@ services:
|
||||||
- "${HTML_PORT}" # Expose only to localhost, see .env
|
- "${HTML_PORT}" # Expose only to localhost, see .env
|
||||||
environment:
|
environment:
|
||||||
- TZ
|
- TZ
|
||||||
|
logging:
|
||||||
|
driver: "local"
|
||||||
|
options:
|
||||||
|
max-size: "10m"
|
||||||
|
max-file: "5"
|
||||||
depends_on:
|
depends_on:
|
||||||
- particl_core
|
- particl_core
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
Loading…
Reference in a new issue