fabric-samples/asset-transfer-basic/rest-api-typescript/docker-compose.yaml
James Taylor 5edae7c444
Update samples to use published fabric-rest-sample (#626)
Signed-off-by: James Taylor <jamest@uk.ibm.com>
2022-02-03 12:15:29 -05:00

24 lines
421 B
YAML

version: '3'
# Replace network name with the fabric test-network name
services:
redis:
image: 'redis'
ports:
- 6379:6379
networks:
- fabric_test
nodeapp:
image: 'ghcr.io/hyperledger/fabric-rest-sample:latest'
command: ['start:dotenv']
ports:
- 3000:3000
env_file:
- ./.env
networks:
- fabric_test
networks:
fabric_test:
external: true