mirror of
https://github.com/pldubouilh/gossa
synced 2026-05-02 18:00:47 +02:00
bump release
This commit is contained in:
parent
48f1751cee
commit
93f3717835
4 changed files with 8 additions and 4 deletions
5
Makefile
5
Makefile
|
|
@ -1,8 +1,11 @@
|
|||
run:
|
||||
build:
|
||||
make embed
|
||||
go vet && go fmt
|
||||
CGO_ENABLED=0 go build gossa.go
|
||||
rm gossa.go
|
||||
|
||||
run:
|
||||
make build
|
||||
./gossa fixture
|
||||
|
||||
watch:
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ RUN curl -L -o caddy.tar.gz "https://github.com/mholt/caddy/releases/download/v0
|
|||
RUN tar xvzf caddy.tar.gz && mv caddy /caddy
|
||||
|
||||
# download and prepare gossa
|
||||
RUN curl -L -o /gossa "https://github.com/pldubouilh/gossa/releases/download/v0.0.6/gossa-linux64"
|
||||
RUN curl -L -o /gossa "https://github.com/pldubouilh/gossa/releases/download/v0.0.7/gossa-linux64"
|
||||
RUN chmod +x /gossa /caddy
|
||||
|
||||
# Caddy config:
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
FROM alpine
|
||||
EXPOSE 8001
|
||||
RUN wget https://github.com/pldubouilh/gossa/releases/download/v0.0.6/gossa-linux64 && mv gossa-linux64 /gossa && chmod +x /gossa
|
||||
RUN wget https://github.com/pldubouilh/gossa/releases/download/v0.0.7/gossa-linux64 && mv gossa-linux64 /gossa && chmod +x /gossa
|
||||
ENTRYPOINT [ "/gossa", "-h", "0.0.0.0", "/shared" ]
|
||||
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ built blobs are available on the [release page](https://github.com/pldubouilh/go
|
|||
|
||||
### run
|
||||
```sh
|
||||
# build
|
||||
# build (or download release from github)
|
||||
make
|
||||
|
||||
# run
|
||||
|
|
@ -46,6 +46,7 @@ make
|
|||
|Ctrl/Meta + C | copy URL to clipboard|
|
||||
|Ctrl/Meta + E | rename file/folder|
|
||||
|Ctrl/Meta + Del | delete file/folder|
|
||||
|Ctrl/Meta + U | upload new file/folder|
|
||||
|Ctrl/Meta + D | create a new directory|
|
||||
|Ctrl/Meta + X | cut selected path|
|
||||
|Ctrl/Meta + V | paste previously selected paths to directory|
|
||||
|
|
|
|||
Loading…
Reference in a new issue