mirror of
https://github.com/bellingcat/auto-archiver.git
synced 2026-06-07 19:08:30 +03:00
16 lines
485 B
YAML
16 lines
485 B
YAML
|
|
services:
|
|
auto-archiver:
|
|
# point to the local dockerfile
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: auto-archiver
|
|
# Override user to match host UID/GID and avoid permission issues on volumes.
|
|
# Set USER_ID and GROUP_ID env vars, or defaults to 1000:1000.
|
|
user: "${USER_ID:-1000}:${GROUP_ID:-1000}"
|
|
volumes:
|
|
- ./secrets:/app/secrets
|
|
- ./local_archive:/app/local_archive
|
|
command: --config secrets/orchestration.yaml
|