Docker image for Restic REST Server with support for multi-architecture.
The image does not contain changes compared to the official image. You can use the official documentation from here and here.
Docker images are available in GHCR and DockerHub.
docker pull ghcr.io/ngosang/restic-rest-server
or
docker pull ngosang/restic-rest-server
The architectures supported by this image are:
- linux/386
- linux/amd64
- linux/arm/v6
- linux/arm/v7
- linux/arm64/v8
- linux/ppc64le
- linux/s390x
Here are some example snippets to help you get started creating a container.
Compatible with docker-compose v2 schemas.
---
version: "2.1"
services:
restic-rest-server:
image: ngosang/restic-rest-server
container_name: restic-rest-server
environment:
- TZ=Europe/Madrid
- PASSWORD_FILE=/data/.htpasswd
volumes:
- /host_path/restic/data:/data
ports:
- 8000:8000
restart: unless-stopped