mirror of
https://github.com/Permissionless-Software-Foundation/x402-base-facilitator.git
synced 2026-09-21 16:52:01 -07:00
33 lines
715 B
YAML
33 lines
715 B
YAML
# Start the testnet server with the command 'docker-compose up -d'
|
|
|
|
koa-mongodb:
|
|
image: mongo
|
|
ports:
|
|
- "27017:27017" # <host port>:<container port>
|
|
volumes:
|
|
- ./database:/data/db
|
|
command: mongod --smallfiles --logpath=/dev/null # -- quiet
|
|
restart: always
|
|
|
|
koa:
|
|
build: ./koa-boilerplate/
|
|
dockerfile: Dockerfile
|
|
links:
|
|
- koa-mongodb
|
|
ports:
|
|
- "3000:3000" # <host port>:<container port>
|
|
volumes:
|
|
# - ./logs:/home/coinjoin/consolidating-coinjoin/logs
|
|
- ./keys:/home/safeuser/keys
|
|
|
|
restart: always
|
|
|
|
tor:
|
|
image: goldy/tor-hidden-service
|
|
links:
|
|
- koa
|
|
environment:
|
|
PORT_MAP: 80 # Map port to detected service
|
|
volumes:
|
|
- ./keys:/var/lib/tor/hidden_service/
|