First commit

This commit is contained in:
Matt Jadud
2025-12-06 08:19:05 -05:00
commit 0d5dbcae2c
4 changed files with 88 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM cloudron/base:5.0.0 AS base
# RUN apt-get update ; apt-get install -y \
# curl
WORKDIR /app/bin
ADD https://garagehq.deuxfleurs.fr/_releases/v2.1.0/aarch64-unknown-linux-musl/garage /app/bin/garage
# Garage wants these directories for storing stuff.
# We want it here so that /app/data gets backed up.
RUN mkdir -p /app/data/garage/data /app/data/garage/meta
WORKDIR /app/data
COPY garage.toml /app/data/garage.toml
ADD start.bash /app/data/start.bash
CMD [ "/app/data/start.bash" ]