decred.org/dcrdex@v1.0.5/dcrdex-umbrel/docker-compose.yml (about) 1 version: "3.7" 2 3 services: 4 app_proxy: 5 environment: 6 # DCRDEX uses its own auth 7 PROXY_AUTH_ADD: "false" 8 APP_HOST: decred-dcrdex_web_1 9 APP_PORT: 5758 10 11 web: 12 image: decred/dcrdex:v1.0.3@sha256:6c504ae6570ce7753d345cae3c592b411c903430405e1ab9379271124fc44088 13 restart: on-failure 14 volumes: 15 - ${APP_DATA_DIR}/data:/dex/.dexc 16 # When a trade is being settled, the DEX client requires time 17 # to shut down cleanly due to the time sensitive nature of atomic 18 # swaps, hence the long stop_grace_period value. 19 stop_grace_period: 15m 20 entrypoint: ["/bin/sh", "-c", "exec ./bisonw --webaddr $(hostname -I|cut -d\\ -f1 ):5758"]