NONRTRIC-998: Servicemanager - Add API Docs
[nonrtric/plt/sme.git] / servicemanager / docker-compose.yaml
1 #  ============LICENSE_START===============================================
2 #  Copyright (C) 2024 OpenInfra Foundation Europe. All rights reserved.
3 #  ========================================================================
4 #  Licensed under the Apache License, Version 2.0 (the "License");
5 #  you may not use this file except in compliance with the License.
6 #  You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #  Unless required by applicable law or agreed to in writing, software
11 #  distributed under the License is distributed on an "AS IS" BASIS,
12 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #  See the License for the specific language governing permissions and
14 #  limitations under the License.
15 #  ============LICENSE_END=================================================
16 #
17 version: '3.5'
18
19 services:
20   capifcore:
21     container_name: sme-capifcore
22     image: capifcore:latest
23     ports:
24       - 8090:8090
25     entrypoint: ["/capifcore"]
26     networks:
27       - capif
28
29   servicemanager:
30     container_name: servicemanager
31     image: servicemanager:latest
32     environment:
33       - SERVICE_MANAGER_ENV=""
34     ports:
35       - 8095:8095
36     depends_on:
37       - sme-capifcore
38     networks:
39       - capif
40
41 networks:
42   capif:
43     driver: bridge
44     name: capifnet