mirror of
https://github.com/planetmint/planetmint.git
synced 2025-03-30 15:08:31 +00:00

* fixed missing abci_rpc initialization * bumped versions and added changelog * sq fixes Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
39 lines
1.0 KiB
YAML
39 lines
1.0 KiB
YAML
---
|
|
# Copyright © 2020 Interplanetary Database Association e.V.,
|
|
# Planetmint and IPDB software contributors.
|
|
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
|
# Code is Apache-2.0 and docs are CC-BY-4.0
|
|
|
|
version: '2.2'
|
|
|
|
services:
|
|
planetmint-all-in-one:
|
|
image: planetmint/planetmint-aio:latest
|
|
expose:
|
|
- "22"
|
|
- "9984"
|
|
- "9985"
|
|
- "26656"
|
|
- "26657"
|
|
- "26658"
|
|
command: ["/usr/src/app/scripts/pre-config-planetmint.sh", "/usr/src/app/scripts/all-in-one.bash"]
|
|
volumes:
|
|
- ./integration/scripts:/usr/src/app/scripts
|
|
- shared:/shared
|
|
scale: ${SCALE:-4}
|
|
|
|
test:
|
|
build:
|
|
context: .
|
|
dockerfile: integration/python/Dockerfile
|
|
depends_on:
|
|
- planetmint-all-in-one
|
|
command: ["/scripts/pre-config-test.sh", "/scripts/wait-for-planetmint.sh", "/scripts/test.sh", "pytest", "/src"]
|
|
environment:
|
|
SCALE: ${SCALE:-4}
|
|
volumes:
|
|
- ./integration/python/src:/src
|
|
- ./integration/scripts:/scripts
|
|
- ./integration/cli:/tests
|
|
- shared:/shared
|