sync
Some checks failed
CI / Build Docker image (pull_request) Failing after 15s

This commit is contained in:
2025-09-04 20:03:27 +02:00
parent e6e01975b9
commit ed8121a7eb
5 changed files with 544 additions and 0 deletions

21
compose.yaml Normal file
View File

@@ -0,0 +1,21 @@
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