lbry-sdk/docker/docker-compose-wallet-server.yml

41 lines
1,019 B
YAML
Raw Normal View History

version: "3"
volumes:
wallet_server:
2021-02-12 01:45:41 +01:00
es01:
services:
wallet_server:
2021-02-26 22:26:24 +01:00
depends_on:
- es01
image: lbry/wallet-server:${WALLET_SERVER_TAG:-development}
restart: always
2021-02-26 22:26:24 +01:00
network_mode: host
ports:
- "50001:50001" # rpc port
2021-02-26 22:26:24 +01:00
- "2112:2112" # uncomment to enable prometheus
volumes:
- "wallet_server:/database"
2021-02-26 22:26:24 +01:00
env_file: [/home/lbry/wallet-server-env]
environment:
2021-02-26 22:26:24 +01:00
- DAEMON_URL=http://lbry:lbry@127.0.0.1:9245
- TCP_PORT=50001
- PROMETHEUS_PORT=2112
2021-02-12 01:45:41 +01:00
es01:
image: docker.elastic.co/elasticsearch/elasticsearch:7.11.0
container_name: es01
environment:
- node.name=es01
- discovery.type=single-node
2021-02-26 22:26:24 +01:00
- indices.query.bool.max_clause_count=4096
2021-02-12 01:45:41 +01:00
- bootstrap.memory_lock=true
2021-02-26 22:26:24 +01:00
- "ES_JAVA_OPTS=-Xms8g -Xmx8g" # no more than 32, remember to disable swap
2021-02-12 01:45:41 +01:00
ulimits:
memlock:
soft: -1
hard: -1
volumes:
- es01:/usr/share/elasticsearch/data
ports:
- 127.0.0.1:9200:9200