mirror of
https://github.com/markusressel/zfs-inplace-rebalancing
synced 2026-02-04 21:14:09 +00:00
11 lines
237 B
Docker
11 lines
237 B
Docker
FROM phusion/baseimage:jammy-1.0.1
|
|
MAINTAINER markusressel
|
|
|
|
RUN apt-get update \
|
|
&& apt-get -y install bc \
|
|
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY zfs-inplace-rebalancing.sh ./
|
|
|
|
ENTRYPOINT ["./zfs-inplace-rebalancing.sh"]
|