This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2017 Intel Corporation | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
# ------------------------------------------------------------------------------ | |
version: "2.1" | |
services: | |
settings-tp: | |
image: hyperledger/sawtooth-settings-tp:1.0 | |
container_name: sawtooth-settings-tp-default | |
depends_on: | |
- validator | |
entrypoint: settings-tp -vv -C tcp://validator:4004 | |
intkey-tp-python: | |
image: hyperledger/sawtooth-intkey-tp-python:1.0 | |
container_name: sawtooth-intkey-tp-python-default | |
depends_on: | |
- validator | |
entrypoint: intkey-tp-python -vv -C tcp://validator:4004 | |
xo-tp-python: | |
image: hyperledger/sawtooth-xo-tp-python:1.0 | |
container_name: sawtooth-xo-tp-python-default | |
depends_on: | |
- validator | |
entrypoint: xo-tp-python -vv -C tcp://validator:4004 | |
validator: | |
image: hyperledger/sawtooth-validator:1.0 | |
container_name: sawtooth-validator-default | |
expose: | |
- 4004 | |
ports: | |
- "4004:4004" | |
# start the validator with an empty genesis batch | |
entrypoint: "bash -c \"\ | |
sawadm keygen && \ | |
sawtooth keygen my_key && \ | |
sawset genesis -k /root/.sawtooth/keys/my_key.priv && \ | |
sawadm genesis config-genesis.batch && \ | |
sawtooth-validator -vv \ | |
--endpoint tcp://validator:8800 \ | |
--bind component:tcp://eth0:4004 \ | |
--bind network:tcp://eth0:8800 \ | |
\"" | |
rest-api: | |
image: hyperledger/sawtooth-rest-api:1.0 | |
container_name: sawtooth-rest-api-default | |
ports: | |
- "8008:8008" | |
depends_on: | |
- validator | |
entrypoint: sawtooth-rest-api -vv -C tcp://validator:4004 --bind rest-api:8008 | |
shell: | |
image: hyperledger/sawtooth-all:1.0 | |
container_name: sawtooth-shell-default | |
depends_on: | |
- rest-api | |
entrypoint: "bash -c \"\ | |
sawtooth keygen && \ | |
tail -f /dev/null \ | |
\"" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment