Skip to content

Commit

Permalink
seednode-docker: Add Persistence
Browse files Browse the repository at this point in the history
  • Loading branch information
alvasw committed Oct 10, 2023
1 parent 7a02900 commit d30b376
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions seednode/deployment_v2/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ version: '3.7'
services:
bisq-seednode:
image: bisq/seednode:latest
volumes:
- bisq_data:/bisq/bisq-seednode
command:
- --fullDaoNode=${BISQ_DAO_FULLNODE}
- --userDataDir=${BISQ_HOME}
Expand All @@ -26,6 +28,8 @@ services:

bisq-tor:
image: bisq/tor:latest
volumes:
- tor_data:/root/.tor
command: [ "--allow-missing-torrc",
"--SOCKSPort", "0.0.0.0:9050",
"--ControlPort", "0.0.0.0:9051",
Expand All @@ -34,3 +38,7 @@ services:
"--SafeSocks", "0",
"--HiddenServiceStatistics", "0",
"--AvoidDiskWrites", "1" ]

volumes:
bisq_data:
tor_data:

0 comments on commit d30b376

Please sign in to comment.