-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
54 lines (49 loc) · 1.45 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
# Copyright 2021 Open Connectivity Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
version: '3.8'
services:
# OBT for discovery and provisioning
obt:
container_name: obt
image: ocfadmin/iotivity-examples
tty: true
stdin_open: true
entrypoint: /iotivity-apps/onboarding_tool
networks:
- demonet
# New app built with iotivity-builder
speakerserver:
container_name: speaker_server
image: ocfadmin/iotivity-examples
tty: true
stdin_open: true
command: speaker_server
networks:
- demonet
# External volume assumed to have the binary; mounted into the working directory
volumes:
- speaker_server:/iotivity-apps/speaker_server
networks:
demonet:
enable_ipv6: true
ipam:
driver: default
config:
- subnet: 172.16.3.0/24
gateway: 172.16.3.1
- subnet: 2001:db8:3::/64
gateway: 2001:db8:3::1
volumes:
speaker_server:
external: true