new dockerfile things

This commit is contained in:
Pierre Dubouilh
2018-12-22 23:52:04 +01:00
parent 6beace6fba
commit 61673432c1
7 changed files with 65 additions and 11 deletions
+7 -6
View File
@@ -50,13 +50,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
```