Skip to content
Snippets Groups Projects
Commit 03c7b052 authored by Bartek Wrona's avatar Bartek Wrona
Browse files

compose file definition

parent a1b9d55f
No related branches found
No related tags found
1 merge request!1Add alternate testnet network with initminer access to the examples to improve user experience with testing
version: "3.7"
name: "hive-bot-world"
services:
workerbee-npm:
build:
context: ..
dockerfile: examples/Dockerfile.npm
args:
USER_NAME: user
tags:
- hive/workerbee:npm
ports:
- "31234:1234"
- "3000:3000"
tty: true
stdin_open: true
init: true
healthcheck:
test: "curl -f localhost:1234"
interval: 10s
timeout: 2s
retries: 10
start_period: 30s
depends_on:
workerbee-testnet:
condition: service_healthy
workerbee-testnet:
build:
context: .
dockerfile: Dockerfile.testnet
args:
HIVE_TESTNET_IMAGE_VERSION: testnet-instance-infinite-post-creator
tags:
- hive/workerbee:testnet-instance
ports:
- "2500:2500"
tty: true
stdin_open: true
init: true
healthcheck:
test: "curl -f localhost:2500"
interval: 10s
timeout: 2s
retries: 10
start_period: 30s
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment