Raise version.

Explicitly set docker logging.
2024-05-20_merge
tecnovert 4 years ago
parent 5beb1d17b9
commit b6ece37a8d
No known key found for this signature in database
GPG Key ID: 8ED6D8750C4E3F93
  1. 2
      basicswap/__init__.py
  2. 5
      docker/docker-compose.yml
  3. 25
      docker/production/docker-compose.yml

@ -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…
Cancel
Save