mirror of
https://github.com/fullstack-cash/bch-api.git
synced 2026-09-21 16:52:04 -07:00
20 lines
346 B
YAML
20 lines
346 B
YAML
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"
|