blob: f491047b83e34a54ad72c7bb471b2b6954bd8d8b (
plain)
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
|
version: '2.1'
# The tag of images is used by docker compose file to launch the correct
# docker containers. By default we always launch the "latest" tag.
#
# But in the "docker build" phase, we also tag the images with a unique tag,
# the SHA1 hash of all files used for "docker build" - see sha1tree() in
# provisioning.
#
# So if you want to update the docker image at a specific time, make sure that
# 1. you modify this file to run the specific image's SHA1 tag, instead of
# "latest"
# 2. you build two docker images in provisioning, the currently used one,
# plus the new one that you tag as "latest"
# 3. you switch this file to the "latest" tag when ready
# You can run `docker images` to list all the tags of available images:
# For example:
# REPOSITORY TAG
# qt-test-server-californium 537fe302f61851d1663f41495230d8e3554a4a13
services:
californium:
extends:
file: ${SHARED_DATA}/docker-compose-common.yml
service: ${SHARED_SERVICE}
container_name: qt-test-server-californium
hostname: ${HOST_NAME:-californium}
build:
context: .
args:
provisioningImage: qt-test-server-californium:latest
serviceDir: ./californium
ports:
- "5683:5683/udp"
- "5684:5684/udp"
entrypoint: ./startup.sh
command: service/californium.sh
freecoap:
extends:
file: ${SHARED_DATA}/docker-compose-common.yml
service: ${SHARED_SERVICE}
container_name: qt-test-server-freecoap
hostname: ${HOST_NAME:-freecoap}
build:
context: .
args:
provisioningImage: qt-test-server-freecoap:latest
serviceDir: ./freecoap
ports:
- "5685:5685/udp"
entrypoint: ./startup.sh
command: service/freecoap.sh
|