Files
backupsidecar/compose.yaml
Timo Behrendt ed8121a7eb
Some checks failed
CI / Build Docker image (pull_request) Failing after 15s
sync
2025-09-04 20:20:01 +02:00

22 lines
457 B
YAML

version: "3.8"
services:
restic-server:
image: restic/rest-server:latest
container_name: restic-server
ports:
- "8000:8000"
command: rest-server --no-auth --path /data
restart: unless-stopped
postgres:
image: postgres:17
container_name: postgres-test
ports:
- "5432:5432"
environment:
POSTGRES_DB: testdb
POSTGRES_USER: testuser
POSTGRES_PASSWORD: testpass
restart: unless-stopped