mirror of
https://github.com/anyproto/anytype-heart.git
synced 2025-06-09 09:35:00 +09:00
31 lines
759 B
YAML
31 lines
759 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
old_application:
|
|
image: middleware-old
|
|
# image: ghcr.io/anyproto/anytype-heart:v0.25.1
|
|
ports:
|
|
- "${ANYTYPE_OLD_TEST_GRPC_PORT:?}:31007"
|
|
- "31018:31008"
|
|
volumes:
|
|
- type: bind
|
|
source: ./tests/.cache/anytype_old
|
|
target: /var/anytype_old
|
|
test:
|
|
environment:
|
|
- ANYTYPE_OFFLINE=true
|
|
build:
|
|
context: .
|
|
args:
|
|
- GITHUB_LOGIN=${GITHUB_LOGIN:?}
|
|
- GITHUB_TOKEN=${GITHUB_TOKEN:?}
|
|
volumes:
|
|
- type: bind
|
|
source: ./tests/.cache/anytype
|
|
target: /var/anytype
|
|
- type: bind
|
|
source: ./tests/.cache/anytype_old
|
|
target: /var/anytype_old
|
|
ports:
|
|
- "${ANYTYPE_TEST_GRPC_PORT:?}:31007"
|
|
- "31008:31008"
|