This commit is contained in:
21
compose.yaml
Normal file
21
compose.yaml
Normal 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
|
||||
Reference in New Issue
Block a user