upgrade docker files to not attempt to install or use the old API daemon

This commit is contained in:
Jude Nelson
2018-05-04 17:43:34 -04:00
parent 890c48d56a
commit cd0bc1e89d
8 changed files with 139 additions and 110 deletions

View File

@@ -38,7 +38,6 @@ services:
- BSK_API_TMPLTDIR=/src/blockstack/api/templates
- DEFAULT_CACHE_TIMEOUT=1800
- MONGODB_URI=mongodb://mongodb
- BSK_API_TMPLTDIR=/src/blockstack/api/templates
- BASE_API_URL=http://blockstack-core:6270
- DEBUG=True
networks:
@@ -50,6 +49,18 @@ services:
- mongodb
volumes:
- "./data/search-api:/var/blockstack-search"
blockstack-core:
build:
context: ../
dockerfile: Dockerfile
command: 'blockstack-core start --foreground --debug'
volumes:
- './blockstack-core/server/:/root/.blockstack-server/'
- './blockstack-core/api/:/root/.blockstack/'
restart: always
networks:
- api
networks:
api: null