Files
tapehoard/docker/docker-compose.yml
T
adamlamers 0bfd5affb4
Continuous Integration / backend-tests (push) Successful in 11m41s
Continuous Integration / frontend-check (push) Successful in 10m54s
tests & remove is_indexed flag from db
2026-04-28 23:55:39 -04:00

26 lines
552 B
YAML

services:
tapehoard:
build:
context: ..
dockerfile: docker/Dockerfile
container_name: tapehoard
ports:
- "8000:8000"
volumes:
- ./db:/database
- ./staging:/staging
- /Users/alamers/git:/source_data:ro
- /Users/alamers/restore:/restores
# Uncomment to enable LTO tape drive support
# devices:
# - /dev/nst0:/dev/nst0
environment:
- PUID=0
- PGID=0
- RUN_AS_ROOT=true
- TZ=UTC
user: "0:0"
cap_add:
- SYS_RAWIO
restart: unless-stopped