docker: Fix script output.

Start python in unbuffered mode.
This commit is contained in:
tecnovert 2023-03-09 16:44:45 +02:00
parent 484d811fe7
commit 89e0080173
No known key found for this signature in database
GPG key ID: 8ED6D8750C4E3F93

View file

@ -16,7 +16,7 @@
depends_on:
- swapclient
restart: unless-stopped
command: ["/usr/bin/python3", "basicswap/scripts/createoffers.py",
command: ["/usr/bin/python3", "-u", "basicswap/scripts/createoffers.py",
"--host", "swapclient",
"--port", "${HTML_PORT}",
"--configfile", "/data/createoffers.json",