forked from actinia-org/actinia-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-test.yml
More file actions
47 lines (42 loc) · 865 Bytes
/
Copy pathdocker-compose-test.yml
File metadata and controls
47 lines (42 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
# SPDX-FileCopyrightText: (c) 2022-2025 by mundialis GmbH & Co. KG
# SPDX-License-Identifier: GPL-3.0-or-later
version: "3"
services:
actinia-test:
build:
context: ..
dockerfile: docker/test-docker/Dockerfile
ports:
- "8088:8088"
# environment:
# - JOBTABLE_PW=actinia
depends_on:
- redis
cap_add:
- SYS_PTRACE
networks:
- actinia-test
redis:
image: redis:7.2.3-alpine
volumes:
- ./redis_data:/data
environment:
- REDIS_PASS_FILE=/data/config/.redis
command: [
"sh", "-c",
'
docker-entrypoint.sh
"/data/config/redis.conf"
--requirepass "$$(cat $$REDIS_PASS_FILE)"
'
]
ports:
- "6379:6379"
networks:
- actinia-test
networks:
actinia-test:
ipam:
config:
- subnet: 172.18.0.0/26