adding the config files for deploying this remote
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
# Step 1: Grab the official Litestream binary
|
||||
FROM litestream/litestream:0.3.13 AS litestream
|
||||
|
||||
# Step 2: Build our actual runtime container using official Gitea
|
||||
FROM gitea/gitea:1.22.0
|
||||
|
||||
# Copy Litestream binary into the Gitea container
|
||||
COPY --from=litestream /usr/local/bin/litestream /usr/local/bin/litestream
|
||||
|
||||
# Copy our custom configuration files
|
||||
COPY litestream.yml /etc/litestream.yml
|
||||
COPY entrypoint.sh /usr/local/bin/litestream-entrypoint.sh
|
||||
|
||||
# Make sure our script is executable by the container
|
||||
RUN chmod +x /usr/local/bin/litestream-entrypoint.sh
|
||||
|
||||
# Re-route the container's entrypoint to use our custom script
|
||||
ENTRYPOINT ["/usr/local/bin/litestream-entrypoint.sh"]
|
||||
Reference in New Issue
Block a user