kopia lustrzana https://github.com/linuxserver/docker-documentation
1.4 KiB
1.4 KiB
How to get support
- Join our discord server, read our support policy, and read the description of each channel before asking for support.
- SSH to your server and run the following command to create an alias that gathers the information we require:
The alias gathers the following information: OS details, docker version, run command, and container logs.alias lsiosupport='function _lsiosupport(){ uname -a > lsiosupport.txt; docker -v >> lsiosupport.txt; cat /etdc/os-release >> lsiosupport.txt; docker inspect --format "$(wget -qO- https://docs.linuxserver.io/assets/run.tpl)" $1 >> lsiosupport.txt; docker logs $1 >> lsiosupport.txt; }; _lsiosupport'
- Execute the alias with a container name:
Addlsiosupport <container-name>
sudo
in the beginning if your user can't access docker. - A file called
lsiosupport.txt
will be created in the current folder, open it with a text editor. - Redact sensitive information such as: passwords, domains, emails, personal information, etc. Don't redact information we need for troubleshooting such as: IPs, volumes, local paths, etc.
- Upload the file to a pastebin like PrivateBin or Gist.
- Post the link along with a detailed description of your issue in the appropriate discord support channel.