Merge pull request #7 from pldubouilh/docker

new dockerfile things
This commit is contained in:
Pierre Dubouilh
2018-12-23 00:12:11 +00:00
committed by GitHub
7 changed files with 65 additions and 11 deletions
+7 -6
View File
@@ -52,13 +52,14 @@ make
|drag-and-drop external item | upload file/folders|
### using with docker
a pretty short docker file is provided
multiple dockerfiles are provided in the `docker` folder. to simply get started just have a look below
```sh
# build docker image
make
docker build -t gossa .
# build
cd docker
docker build -t gossa -f download .
# run
sudo docker run -v ~/ToShare:/shared -p 8001:8001 gossa
```
sudo docker run -v ~/LocalDirToShare:/shared -p 8001:8001 gossa
```