-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (36 loc) · 908 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
37 lines (36 loc) · 908 Bytes
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
services:
tests:
build:
context: .
target: test
image: secureeye:test
working_dir: /workspace
volumes:
- ./:/workspace:ro
command:
- tests
- -v
- -m
- not mediapipe_integration
- -o
- cache_dir=/tmp/pytest_cache
pam-smoke:
profiles: [ "pam" ]
build:
context: .
target: pam-smoke
image: secureeye:pam-smoke
working_dir: /workspace
stdin_open: true
tty: true
privileged: true
devices:
- ${SECUREEYE_VIDEO_DEVICE:-/dev/video2}:${SECUREEYE_VIDEO_DEVICE:-/dev/video2}
volumes:
- ./:/workspace:ro
environment:
PAM_FLOW: ${PAM_FLOW:-smoke}
PAM_SERVICE: ${PAM_SERVICE:-sudo}
SECUREEYE_USER: ${SECUREEYE_USER:-test_user}
SECUREEYE_PASS: ${SECUREEYE_PASS:-test_user}
SECUREEYE_DEVICE: ${SECUREEYE_DEVICE:-${SECUREEYE_VIDEO_DEVICE:-/dev/video2}}