diff options
author | Alex Auvolat <alex@adnab.me> | 2021-02-10 12:53:00 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-02-10 12:53:00 +0100 |
commit | 24766a0eb94f84a92c3ee82a963fed47be63b75a (patch) | |
tree | 8af4fe5172ca096f78177377ab4bfc3d89c50e50 | |
parent | 75d96bdc58a4e8580460b58265e3e5adf0c69d86 (diff) | |
download | garage-24766a0eb94f84a92c3ee82a963fed47be63b75a.tar.gz garage-24766a0eb94f84a92c3ee82a963fed47be63b75a.zip |
change dockerfile; add gzip caching
-rw-r--r-- | .drone.yml | 2 | ||||
-rw-r--r-- | Dockerfile | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -12,6 +12,7 @@ steps: pull: true settings: restore: true + archive_format: "gzip" bucket: drone-cache region: garage mount: @@ -36,6 +37,7 @@ steps: pull: true settings: rebuild: true + archive_format: "gzip" bucket: drone-cache region: garage mount: @@ -3,7 +3,7 @@ FROM archlinux:latest RUN mkdir -p /garage/meta RUN mkdir -p /garage/data ENV RUST_BACKTRACE=1 -ENV RUST_LOG=garage=debug +ENV RUST_LOG=garage=info COPY target/release/garage.stripped /garage/garage |