-
Notifications
You must be signed in to change notification settings - Fork 99
/
docker-compose.yml
57 lines (52 loc) · 1.33 KB
/
docker-compose.yml
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
48
49
50
51
52
53
54
55
56
57
# Copyright BMW CarIT GmbH, 2021.
#
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
services:
sw360:
image: "ghcr.io/eclipse-sw360/sw360:latest"
restart: unless-stopped
container_name: sw360
depends_on:
- couchdb
ports:
- "8080:8080"
- "11311:11311"
stdin_open: true
tty: true
volumes:
- etc:/etc/sw360
- ./config/sw360:/app/sw360/config
couchdb-nouveau:
image: couchdb:3.4-nouveau
ports:
- "5987:5987"
- "5988:5988"
couchdb:
image: couchdb:3.4
restart: unless-stopped
environment:
- COUCHDB_CREATE_DATABASE=yes
ports:
- "5984:5984"
depends_on:
- couchdb-nouveau
volumes:
- couchdb:/opt/couchdb/data
- ./config/couchdb/sw360_setup.ini:/opt/couchdb/etc/local.d/sw360_setup.ini
- ./config/couchdb/sw360_log.ini:/opt/couchdb/etc/local.d/sw360_log.ini
- ./config/couchdb/nouveau.ini:/opt/couchdb/etc/local.d/nouveau.ini
healthcheck:
test: ["CMD-SHELL", "curl --fail -s http://couchdb:5984/_up"]
interval: 30s
timeout: 5s
retries: 5
volumes:
couchdb: null
etc: null
networks:
default:
name: sw360net