hi
i get the following error when i try to deploy quantrocket.
i have included the docker-compose.yml file
any help would be appreciated
thanks
darryl
--------------------------------------------------------error------------------------------------------------------
PS C:\Users\Darryl\quantrocket> docker-compose up -d
Starting quantrocket_codeload_1 ...
quantrocket_license-service_1 is up-to-date
quantrocket_db_1 is up-to-date
quantrocket_logspout_1 is up-to-date
Starting quantrocket_houston_1 ...
quantrocket_ibg1_1 is up-to-date
quantrocket_flightlog_1 is up-to-date
quantrocket_fundamental_1 is up-to-date
Starting quantrocket_houston_1 ... error
ERROR: for quantrocket_houston_1 Cannot start service houston: driver failed programming external connectivity on endpoint quantrocket_houston_1 (07de0fe641b9f9fde83b2a3a058732f70734cb763230fddf84e10d5d4695Starting quantrocket_codeload_1 ... done
quantrocket_history_1 is up-to-date
quantrocket_launchpad_1 is up-to-date
quantrocket_jupyter_1 is up-to-date
quantrocket_moonshot_1 is up-to-date
quantrocket_countdown-us_1 is up-to-date
quantrocket_master_1 is up-to-date
quantrocket_zipline_1 is up-to-date
ERROR: for houston Cannot start service houston: driver failed programming external connectivity on endpoint quantrocket_houston_1 (07de0fe641b9f9fde83b2a3a058732f70734cb763230fddf84e10d5d46953fc4): Error starting userland proxy: mkdir /port/tcp:0.0.0.0:1969:tcp:172.18.0.17:80: input/output error
ERROR: Encountered errors while bringing up the project.
----------------------------docker-compose.yml------------------------------------------------------------------
version: '2'
services:
license-service:
image: 'quantrocket/license-service:0.6.7'
environment:
LICENSE_KEY: '${QUANTROCKET_LICENSE_KEY}'
restart: always
houston:
image: 'quantrocket/houston:0.9.0'
ports:
- '1969:80'
restart: always
launchpad:
image: 'quantrocket/launchpad:0.1.15'
volumes_from:
- codeload
restart: always
ibg1:
image: 'quantrocket/ibg:969.2'
environment:
TWSUSERID: '${IBG1_USERNAME}'
TWSPASSWORD: '${IBG1_PASSWORD}'
TRADING_MODE: live
INI_SETTINGS: '--ExistingSessionDetectedAction=primary'
API_SETTINGS: '--readOnlyApi=false --masterClientID=6000'
restart: always
codeload:
image: 'quantrocket/codeload:0.5.2'
environment:
GIT_URL: 'GitHub - quantrocket-llc/codeload-demo: Demo configuration files and strategy code for QuantRocket'
GIT_BRANCH: master
volumes:
- '/c/users/darryl/quantrocket/codeload:/codeload'
db:
image: 'quantrocket/db:0.2.1'
volumes:
- '/c/users/darryl/quantrocket/databases:/var/lib/quantrocket'
restart: always
countdown-us:
image: 'quantrocket/countdown:0.5.1'
environment:
SERVICE_NAME: countdown-us
TZ: America/New_York
volumes_from:
- codeload
restart: always
logspout:
image: 'gliderlabs/logspout:latest'
volumes:
- '/var/run/docker.sock:/var/run/docker.sock'
command: 'syslog+udp://flightlog:9021,syslog://logs5.papertrailapp.com:47405?filter.name=houston'
restart: always
flightlog:
image: 'quantrocket/flightlog:0.5.2'
volumes:
- /var/log/flightlog
restart: always
account:
image: 'quantrocket/account:0.1.0'
volumes_from:
- db
restart: always
jupyter:
image: 'quantrocket/jupyter:4.4.0.8'
volumes_from:
- codeload
fundamental:
image: 'quantrocket/fundamental:0.1.4'
volumes_from:
- db
restart: always
moonshot:
image: 'quantrocket/moonshot:0.1.4'
volumes_from:
- codeload
restart: always
history:
image: 'quantrocket/history:0.2.6'
volumes_from:
- codeload
- db
restart: always
master:
image: 'quantrocket/master:0.2.12'
volumes_from:
- codeload
- db
restart: always
zipline:
image: 'quantrocket/zipline:1.1.1.7'
volumes_from:
- codeload
volumes:
- /root/.zipline/data
restart: always