c3accd79bd
Replaced build with image docker-compose.yml-prod-example Adjusted paths in volumes Removed a few more things healthcheck.sh which can be added later when completed. renamed the Dockerfile to Dockerfile-x86_64-production Updated image tag and added RUN_MODE Updated image and added RUN_MODE updated tag Updated tag
17 lines
369 B
Text
17 lines
369 B
Text
version: '3.4'
|
|
|
|
services:
|
|
#############
|
|
## Lbrycrd ##
|
|
#############
|
|
lbrycrd:
|
|
image: lbry/lbry-docker:lbrycrd-linux-x86_64-production
|
|
restart: always
|
|
ports:
|
|
- "11336:9246"
|
|
- "11337:11337"
|
|
## host volumes for persistent data such as wallet private keys.
|
|
volumes:
|
|
- "../persist/data:/data"
|
|
environment:
|
|
- RUN_MODE=regtest
|