forked from eclipse-sw360/sw360
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
53 lines (48 loc) · 1.13 KB
/
docker-compose.yml
File metadata and controls
53 lines (48 loc) · 1.13 KB
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
# 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
version: "3.8"
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
- document_library:/app/sw360/data/document_library
- ./config:/app/sw360/config
couchdb:
image: couchdb
restart: unless-stopped
environment:
- COUCHDB_USER=admin
- COUCHDB_PASSWORD=password
- COUCHDB_CREATE_DATABASE=yes
ports:
- "5984:5984"
volumes:
- couchdb:/opt/couchdb/data
healthcheck:
test: ["CMD-SHELL", "curl --fail -s http://couchdb:5984/_up"]
interval: 30s
timeout: 5s
retries: 5
volumes:
postgres: null
couchdb: null
etc: null
document_library: null
networks:
default:
name: sw360net