Files
soteria/docker-compose.yml
2026-01-02 09:10:27 -06:00

23 lines
465 B
YAML

services:
rest-server:
image: restic/rest-server
container_name: restic
restart: unless-stopped
volumes:
- /mnt/restic:/data
environment:
OPTIONS: --no-auth
envoy:
image: envoyproxy/envoy:v1.33-latest
user: root
container_name: envoy
restart: unless-stopped
ports:
- "443:10000"
volumes:
- ./envoy.yaml:/etc/envoy/envoy.yaml:ro
- /var/lib/tls:/certs
depends_on:
- rest-server