-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
68 lines (57 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
58
59
60
61
62
63
64
65
66
67
68
version: "3"
services:
# Site 1 - IoT ==============================================================
# MinnowBoards
minnow0:
build:
dockerfile: custom.dock
context: .
command: sleep infinity
minnow1:
image: fedora:latest
command: sleep infinity
minnow2:
image: fedora:latest
command: sleep infinity
# Raspberry Pis
rpi0:
image: debian:latest
command: sleep infinity
rpi1:
image: debian:latest
command: sleep infinity
rpi2:
image: debian:latest
command: sleep infinity
# Site 2 - Emulation ========================================================
# Node emulation nodes
nodemu0:
image: busybox:glibc
command: tail -f /dev/null
nodemu1:
image: busybox:glibc
command: tail -f /dev/null
nodemu2:
image: busybox:glibc
command: tail -f /dev/null
# Network emulation nodes
netmu0:
image: centos:latest
command: sleep infinity
netmu1:
image: centos:latest
command: sleep infinity
netmu2:
image: centos:latest
command: sleep infinity
# Site 3 - Cellular =========================================================
# Androids
droid0:
image: ubuntu:latest
command: apt-get update
droid1:
image: ubuntu:latest
command: sleep infinity
droid2:
image: ubuntu:latest
command: sleep infinity