-
Notifications
You must be signed in to change notification settings - Fork 805
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[bug] Is the latest docker image broken? #790
Comments
Same. I tried running this again but pulled the latest docker-compose.yml. Can't get it to start at all. Getting the same errors you are. |
So just for fun, I went and looked to see if anyone archived a working compose.yml file using the Wayback Machine, and someone did lol. Plopped it in and it works like normal again. I think the compose file is the only thing wrong since this old one is using the latest docker image. Either way, here's the docker-compose.yml from the Wayback Machine. |
I'm unable to get the only office integration working with the latest docker-compose |
Looks like the latest fixes are switching to COLLABRA - so maybe that's the only office replacement? |
And unfortunately I'm running into some HTTPs errors with the latest build.. |
Hasn't start up the docker successfully with the latest docker compose file. I have rollbacked to use the file-browser in my OMV7 nas. |
I deleted all remnants of Filestash and got it working, fyi |
Via docker? I can get FB to run but any docx stuff is broken with an insecure issue |
Thx for your remind. I have faywong@faywong-pc:~/docker/filestash$ curl -vv http://localhost:8334
* Host localhost:8334 was resolved.
* IPv6: ::1
* IPv4: 127.0.0.1
* Trying [::1]:8334...
* Connected to localhost (::1) port 8334
> GET / HTTP/1.1
> Host: localhost:8334
> User-Agent: curl/8.5.0
> Accept: */*
>
* Recv failure: Connection reset by peer
* Closing connection
curl: (56) Recv failure: Connection reset by peer
faywong@faywong-pc:~/docker/filestash$ sudo netstat -nlp |grep -i 8334
tcp 0 0 0.0.0.0:8334 0.0.0.0:* LISTEN 3012740/docker-prox
tcp6 0 0 :::8334 :::* LISTEN 3012746/docker-prox the compose.yaml i used: version: '2'
services:
app:
container_name: filestash
image: machines/filestash
restart: always
ports:
- "8334:8334"
volumes:
- filestash:/app/data/state/
onlyoffice:
container_name: filestash_oods
image: onlyoffice/documentserver
restart: always
security_opt:
- seccomp:unconfined
volumes:
filestash: {} |
with the most recent docker-compose file, you should be able to:
If you use a link like this: http://127.0.0.1:8334/login?type=webdav&url=https://webdav.filestash.app&next=/view/Documents/office.docx you should see: |
Description of the bug
I follow the instructions at https://www.filestash.app/docs/install-and-upgrade/#installation to deploy filestash.
The docker image succeed to startup, but the 8334 can't be accessed any more.
Step by step instructions to reproduce the bug
Just as https://www.filestash.app/docs/install-and-upgrade/#installation
Observed behavior
the filestash docker log:
the filestash_wopi log:
Expected behavior
The file stash service functions well at port 8334.
Also i noticed that the compose file has changed much from the old one(functions well) i used. But it's so pity i can not find the old docker.yaml.
The text was updated successfully, but these errors were encountered: