diff options
author | Alex Auvolat <alex@adnab.me> | 2020-12-03 18:55:00 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-12-03 18:55:00 +0100 |
commit | 56c524bbea64a85d7ced56406b0855041783845f (patch) | |
tree | c459020a7a6dec6ed9ff3929cfebd3bc137eabf7 /Dockerfile | |
parent | 4061fc9fe801cf84bdfcdde10f4c62fa57563e12 (diff) | |
download | netapp-56c524bbea64a85d7ced56406b0855041783845f.tar.gz netapp-56c524bbea64a85d7ced56406b0855041783845f.zip |
Build docker container for basalt example
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a179597 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,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 |