Some checks failed
CI / Build Docker image (pull_request) Failing after 15s
22 lines
457 B
YAML
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
|