dockerfile

This commit is contained in:
Pierre Dubouilh
2018-11-17 01:01:58 +01:00
parent 13cf1db89d
commit e192cf373a
3 changed files with 19 additions and 3 deletions
+12
View File
@@ -35,3 +35,15 @@ make
### built blobs
built blobs are available on the [release page](https://github.com/pldubouilh/gossa/releases).
### using with docker
a pretty short docker file is provided
```sh
# build docker image
make
docker build -t gossa .
# run
sudo docker run -v ~/ToShare:/shared -p 8001:8001 gossa
```