Skip to content

Commit c098f0b

Browse files
committed
Added a docker file for building the image
1 parent 1def54e commit c098f0b

6 files changed

+76
-6
lines changed

Dockerfile

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM scratch
2+
MAINTAINER jordic [email protected]
3+
# REPO http://github.com/jordic/file_server
4+
ADD main /
5+
VOLUME "/tmp"
6+
EXPOSE 8080
7+
CMD ["/main"]

Makefile

+11
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,26 @@
11

22

3+
VERSION = 1.0
4+
35
bindata-dev:
46
go-bindata --dev data/
57

68
bindata-build:
79
go-bindata data/
810

911
run:
12+
FILESERVER_DIR=/tmp FILESERVER_PORT=:9000 \
1013
go run auth.go bindata.go commands.go dirjson.go dirsearch.go \
1114
dirzip.go gzip.go main.go serv_statics.go webcommand.go
1215

1316

17+
build:
18+
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o main .
19+
20+
build_image:
21+
docker build -t jordic/file_server:$(VERSION) .
1422

23+
push:
24+
docker push jordic/file_server:$(VERSION)
1525

26+
all: bindata-build build build_image

README.md

+39-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,43 @@
1-
### Portable filebrowser with html5 mobile ui
1+
### Portable filebrowser with html5 mobile ui.
2+
3+
4+
5+
**TL;DR**
6+
7+
Portable file server throught http. Uses:
8+
9+
- Share videos/audios on your local network.
10+
- Expose docker volumes to http.
11+
- Share private server folders online
12+
13+
Run with docker:
14+
15+
```
16+
docker run --rm -v /home/jordi:/tmp -p 8080:8080 jordic/file_server:1.0
17+
```
18+
19+
without docker:
20+
21+
```
22+
wget https://github.com/jordic/file_server/blob/master/builds/file_server_linux_amd64?raw=true
23+
chmod +x file_server_linux_amd64
24+
./file_server_linux_amd64 -dir $HOME
25+
26+
```
27+
The docker image, can receive env variables:
28+
29+
FILESERVER_AUTH = username:password for handling basic auth
30+
FILESERVER_COMMAND = allow running shell commands from the UI
31+
FILESERVER_DIR = dir to expose
32+
FILESERVER_PORT = port for the service
233

334
#### Features
435
- Mobile UI with almost all "usable displays", android and ios ( on ios, can't upload files)
536
- Fast UI. Json + angular
637
- Directory fuzzy search / Acces ( style textmate command+T)
738
- Inline search ( current list )
839
- Upload mutliple files.
9-
- Big uploads. Tested with 1G files. ( Uploads are streamed to disk )
40+
- Big uploads. Tested with 5G files. ( Uploads are streamed to disk )
1041
- File delete / remove / copy / compress
1142
- Dir creation
1243
- File editor with Codemirror ( javascript, html, css, php.. )
@@ -28,7 +59,6 @@
2859

2960
Donwload a binary build: (Stable)
3061

31-
- [Osx 64bits](builds/file_server_darwin_amd64)
3262
- [Linux 64bits](builds/file_server_linux_amd64)
3363

3464
Or compile it:
@@ -68,6 +98,12 @@ go build or go install
6898

6999
##### Changelog
70100

101+
###### v1.0
102+
+ Updated go-bindata
103+
+ Added Dockerfile
104+
+ Added env variables for handling docker config
105+
+ Updated docs
106+
71107
###### v0.9
72108
+ Big refactor using Angular for frontend and api calls for actions
73109

builds/file_server_darwin_amd64

-10.2 MB
Binary file not shown.

builds/file_server_linux_amd64

-1.14 MB
Binary file not shown.

main.go

+19-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var (
3030
//commandsFile string
3131

3232
const MAX_MEMORY = 1 * 1024 * 1024
33-
const VERSION = "0.96c"
33+
const VERSION = "1.0"
3434

3535
func main() {
3636

@@ -40,7 +40,7 @@ func main() {
4040
os.Exit(0)
4141
}
4242

43-
flag.StringVar(&dir, "dir", ".", "Specify a directory to server files from.")
43+
flag.StringVar(&dir, "dir", "/tmp", "Specify a directory to server files from.")
4444
flag.StringVar(&port, "port", ":8080", "Port to bind the file server")
4545
flag.BoolVar(&logging, "log", true, "Enable Log (true/false)")
4646
flag.StringVar(&auth, "auth", "", "'username:pass' Basic Auth")
@@ -50,9 +50,25 @@ func main() {
5050
flag.BoolVar(&disable_sys_command, "disable_cmd", true, "Disable sys comands")
5151

5252
//flag.StringVar(&cpuprof, "cpuprof", "", "write cpu and mem profile")
53-
5453
flag.Parse()
5554

55+
envDir := os.Getenv("FILESERVER_DIR")
56+
if envDir != "" {
57+
dir = envDir
58+
}
59+
envPort := os.Getenv("FILESERVER_PORT")
60+
if envPort != "" {
61+
port = envPort
62+
}
63+
envAuth := os.Getenv("FILESERVER_AUTH")
64+
if envAuth != "" {
65+
auth = envAuth
66+
}
67+
envCmd := os.Getenv("FILESERVER_COMMAND")
68+
if envCmd != "" {
69+
disable_sys_command = false
70+
}
71+
5672
if logging == false {
5773
log.SetOutput(ioutil.Discard)
5874
}

0 commit comments

Comments
 (0)