mirror of
https://github.com/outbackdingo/debos.git
synced 2026-01-27 18:18:45 +00:00
22 lines
391 B
YAML
22 lines
391 B
YAML
version: '3.6'
|
|
|
|
services:
|
|
sut:
|
|
build:
|
|
context: ..
|
|
dockerfile: docker/Dockerfile
|
|
volumes:
|
|
- type: bind
|
|
source: ../tests/exit_test
|
|
target: /recipes
|
|
tmpfs:
|
|
- /scratch:exec
|
|
environment:
|
|
- TMP=/scratch
|
|
cap_add:
|
|
- SYS_PTRACE
|
|
security_opt:
|
|
- label:disable
|
|
working_dir: /recipes/
|
|
entrypoint: ./exit_test.sh
|