You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.2 KiB

version: "3.7"
services:
app_proxy:
environment:
APP_HOST: $APP_WOOFBOT_WEB_IP
APP_PORT: 8080
web:
image: woofbot/woofbot:v0.2.0@sha256:bfcc02f752963eaf9f9c3bf2776e032194d218b0037f3c54ed19d8872a7f241b
restart: on-failure
stop_grace_period: 1m
environment:
MONGODB_URI: "mongodb://${APP_WOOFBOT_DATABASE_IP}:27017/woofbot"
APP_PORT: "8080"
APP_SEED: $APP_SEED
APP_BITCOIN_NODE_IP: $APP_BITCOIN_NODE_IP
APP_BITCOIN_RPC_USER: $APP_BITCOIN_RPC_USER
APP_BITCOIN_RPC_PASS: $APP_BITCOIN_RPC_PASS
APP_BITCOIN_RPC_PORT: $APP_BITCOIN_RPC_PORT
networks:
default:
ipv4_address: $APP_WOOFBOT_WEB_IP
depends_on:
- mongodb
mongodb:
# Newer mongo versions don't support Raspberry Pi 4 arm64
image: mongo:4.4.6-bionic@sha256:3d0e6df9fd5bc42cbf8ef8bc9e6c4e78f6f26c7157dbd7bdec72d202ab8ebe3a
user: 1000:1000
restart: on-failure
stop_grace_period: 1m
volumes:
- ${APP_DATA_DIR}/data/db:/data/db
- ${APP_DATA_DIR}/data/db/diagnostic.data:/data/db/diagnostic.data
- ${APP_DATA_DIR}/data/db/journal:/data/db/journal
networks:
default:
ipv4_address: $APP_WOOFBOT_DATABASE_IP