-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
58 lines (56 loc) · 1.36 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
version: '3.1'
services:
rpi4:
container_name: rpi4
restart: "no"
environment:
O: build-rpi4
BUILDTYPE: "debug"
OMIT_DEPRECATED: "true"
BUILD: cpu2
build:
context: ./dockerfiles
dockerfile: rpi4.Dockerfile
volumes:
- ./:/cfs
dev:
container_name: dev
restart: "no"
networks:
- sat-link
environment:
O: build-dev
BUILDTYPE: "debug"
OMIT_DEPRECATED: "true"
SIMULATION: native
BUILD: cpu1
ports:
- '1235:1235'
cap_add:
- CAP_SYS_RESOURCE
build:
context: ./dockerfiles
dockerfile: ubuntu.Dockerfile
volumes:
- ./:/cfs
yamcs:
build:
context: ./dockerfiles
dockerfile: yamcs.Dockerfile
hostname: yamcs
container_name: yamcs
env_file: .env
command: "/run_yamcs.sh"
volumes:
- ./yamcs:/yamcs
- ./dockerfiles/run_yamcs.sh:/run_yamcs.sh
networks:
- sat-link
ports:
- "8090:8090"
- "10015:10015/udp"
- "${TO_PORT}:${TO_PORT}/udp"
- "${CI_PORT}:${CI_PORT}"
networks:
sat-link:
driver: bridge