RASCSI/docker/docker-compose.ci.yml
Daniel Markstedt 52c2aa474f
Rebrand project to PiSCSI (#1016)
* Rebrand project to PiSCSI
- rascsi ->piscsi
- rasctl -> scsictl
- rasdump -> scsidump
- ras* -> piscsi* (rasutil -> piscsi_util, etc.)

* Refined the formatting and wording of the app startup banner
* Kept some references to rascsi and rasctl where backwards compatibility is concerned
* Point to the new github repo URL

Co-authored-by: nucleogenic <nr@nucleogenic.com>
Co-authored-by: Uwe Seimet <Uwe.Seimet@seimet.de>
2022-12-05 09:58:23 -08:00

43 lines
921 B
YAML

services:
backend:
image: ${DOCKER_BACKEND_IMAGE}
build:
context: ..
dockerfile: docker/backend/Dockerfile
init: true
volumes:
- ./volumes/images:/home/pi/images:delegated
healthcheck:
interval: 5s
start_period: 5s
web:
build:
context: ..
dockerfile: docker/web/Dockerfile
args:
- OS_VERSION=buster
volumes:
- ./volumes/images:/home/pi/images:delegated
init: true
command: ["--backend-host=backend", "--log-level=debug"]
healthcheck:
interval: 5s
start_period: 5s
pytest:
depends_on:
web:
condition: service_healthy
backend:
condition: service_healthy
profiles:
- webui-tests
build:
context: ..
dockerfile: docker/pytest/Dockerfile
working_dir: /src
volumes:
- ./volumes/pytest:/src/tests/output:delegated
command: ["-vv"]