mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
5ddec3e4f2
Adds Dockerfile and docker-compose.yml files to easily build a new seednode from the latest master branch. The Dockerfile assumes you have a hostname and private_keys. Also small fixes to SeedNode/SeedNodeMain. Signed-off-by: Mike Rosseel <mike@eon-consult.be>
16 lines
327 B
YAML
16 lines
327 B
YAML
version: '3'
|
|
|
|
# Fill in your own ONION addres, without the .onion suffix
|
|
|
|
services:
|
|
seednode:
|
|
build:
|
|
context: .
|
|
args:
|
|
- ONION_ADDRESS=123xxxxxxxxxx
|
|
image: bisq:seednode
|
|
ports:
|
|
- 8000:8000
|
|
environment:
|
|
- ONION_ADDRESS=123xxxxxxxxxx
|