-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.yml
51 lines (51 loc) · 1.09 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
version: "3"
services:
karmen:
environment:
TZ: "America/New_York"
hostname: karmen
image: ghcr.io/jrcichra/karmen
restart: always
volumes:
- "${PWD}/config.yml:/config.yml"
gpio:
environment:
TZ: "America/New_York"
hostname: gpio
restart: always
image: ghcr.io/jrcichra/smartcar_gpio
depends_on:
- karmen
dashcam:
environment:
TZ: "America/New_York"
hostname: dashcam
image: ghcr.io/jrcichra/smartcar_dashcam
restart: always
volumes:
- "${PWD}/recordings:/recordings"
privileged: true
depends_on:
- karmen
transfer:
environment:
TZ: "America/New_York"
hostname: transfer
restart: always
image: ghcr.io/jrcichra/smartcar_transfer
volumes:
- "${PWD}/recordings:/recordings"
depends_on:
- karmen
obdii:
environment:
TZ: "America/New_York"
hostname: obdii
restart: always
image: ghcr.io/jrcichra/smartcar_obdii
privileged: true
volumes:
- "/dev/pts:/dev/pts"
- "${PWD}/obdii/:/obdii/"
depends_on:
- karmen