Skip to content
This repository has been archived by the owner on Oct 14, 2023. It is now read-only.

Multi-arch Docker image for Restic Rest Server

License

Notifications You must be signed in to change notification settings

ngosang/docker-restic-rest-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ngosang/restic-rest-server

Latest release Docker Pulls Donate PayPal Donate Bitcoin Donate Ethereum

Docker image for Restic REST Server with support for multi-architecture.

⚠️ This repository is archived because the official Docker image for Restic REST Server has support for multi-architecture since version 0.12.0. Use the official Docker image instead, the configuration is the same.

The image does not contain changes compared to the official image. You can use the official documentation from here and here.

Docker Registry

Docker images are available in GHCR and DockerHub.

docker pull ghcr.io/ngosang/restic-rest-server
or
docker pull ngosang/restic-rest-server

Supported Architectures

The architectures supported by this image are:

  • linux/386
  • linux/amd64
  • linux/arm/v6
  • linux/arm/v7
  • linux/arm64/v8
  • linux/ppc64le
  • linux/s390x

Usage

Here are some example snippets to help you get started creating a container.

docker-compose

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