
Some checks failed
CI - 4NK_node / Code Quality (push) Failing after 46s
CI - 4NK_node / Unit Tests (push) Failing after 30s
CI - 4NK_node / Integration Tests (push) Failing after 11s
CI - 4NK_node / Security Tests (push) Failing after 29s
CI - 4NK_node / Docker Build & Test (push) Failing after 10s
CI - 4NK_node / Documentation Tests (push) Failing after 3s
CI - 4NK_node / Security Audit (push) Successful in 3s
CI - 4NK_node / Release Guard (push) Has been skipped
CI - 4NK_node / Performance Tests (push) Successful in 29s
CI - 4NK_node / Notify (push) Failing after 2s
CI - 4NK_node / Publish Release (push) Has been skipped
40 lines
743 B
YAML
40 lines
743 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
tor:
|
|
image: 4nk-node-tor:latest
|
|
container_name: 4nk-tor
|
|
ports:
|
|
- "9050:9050"
|
|
- "9051:9051"
|
|
volumes:
|
|
- tor_data:/var/lib/tor
|
|
- ./conf/tor.conf:/etc/tor/torrc:ro
|
|
networks:
|
|
- 4nk_network
|
|
restart: unless-stopped
|
|
|
|
bitcoin:
|
|
image: 4nk-node-bitcoin:latest
|
|
container_name: 4nk-bitcoin
|
|
ports:
|
|
- "38333:38333"
|
|
- "18443:18443"
|
|
- "29000:29000"
|
|
volumes:
|
|
- bitcoin_data:/home/bitcoin/.bitcoin
|
|
- ./conf/bitcoin.conf:/home/bitcoin/.bitcoin/bitcoin.conf:ro
|
|
networks:
|
|
- 4nk_network
|
|
restart: unless-stopped
|
|
depends_on:
|
|
- tor
|
|
|
|
volumes:
|
|
tor_data:
|
|
bitcoin_data:
|
|
|
|
networks:
|
|
4nk_network:
|
|
driver: bridge
|