9 lines
220 B
Docker
9 lines
220 B
Docker
FROM archlinux:latest
|
|
|
|
COPY target/release/examples/basalt /root/basalt
|
|
|
|
CMD /root/basalt
|
|
ENV RUST_BACKTRACE=1
|
|
ENV RUST_LOG=netapp=info,netapp::peering=debug,basalt=info
|
|
|
|
CMD /garage/garage server -c /garage/config.toml
|