1234567891011121314151617181920212223242526 |
- version: '2.3'
- volumes:
- data:
- services:
- bitcoind:
- build: .
- image: fphammerle/bitcoin-core
- container_name: bitcoind
- volumes:
- - type: volume
- source: data
- target: /var/lib/bitcoin
- read_only: yes
- ports:
- - '8333:8333'
- - '127.0.0.1:8332:8332'
- cap_drop: [ALL]
- security_opt: [no-new-privileges]
- cpus: 0.5
- # > Memory cgroup out of memory: Killed process 81421 (bitcoind) total-vm:1379624kB, [...]
- mem_limit: 2g
- restart: unless-stopped
- # https:
|