Files
bch-api/docker/mainnet/docker-compose.yml
T

20 lines
346 B
YAML
Raw Normal View History

2020-07-27 21:25:31 -07:00
bch-api-main:
build: .
dockerfile: Dockerfile
#image: bitcore
container_name: bch-api-main
links:
- redis-main
ports:
- "3000:3000"
volumes:
- ../../logs:/home/safeuser/bch-api/logs
restart: always
redis-main:
image: redis:latest
container_name: redis-main
restart: always
ports:
- "172.17.0.1:6379:6379"