blob: a17959776b405548ef563719bdf0cfb0e13cc0e9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
FROM archlinux:latest
COPY target/release/examples/basalt /root/basalt
CMD /root/basalt
ENV RUST_BACKTRACE=1
ENV RUST_LOG=netapp=debug,basalt=debug
CMD /garage/garage server -c /garage/config.toml
|