Merge pull request #61 from linuxserver/rdesktop-notes

add section regarding rdesktop specifically with only one resolution
pull/62/head
driz 2022-10-03 10:11:39 -04:00 zatwierdzone przez GitHub
commit ead74d055c
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 25 dodań i 0 usunięć

25
FAQ.md
Wyświetl plik

@ -45,6 +45,31 @@ For Docker Compose, run your container with:
- seccomp=unconfined
```
## My host is incompatible with images based on rdesktop {#rdesktop}
Some x86_64 hosts have issues running rdesktop based images even with the latest docker version due to syscalls that are unknown to docker.
### Symptoms
If your host is affected you may see errors in your containers such as:
```shell
Failed to close file descriptor for child process (Operation not permitted)
```
### Resolution
For Docker CLI, run your container with:
`--security-opt seccomp=unconfined`
For Docker Compose, run your container with:
```yaml
security_opt:
- seccomp=unconfined
```
## My host is incompatible with images based on Ubuntu Focal and Alpine 3.13 and later {#libseccomp}
This only affects 32 bit installs of distros based on Debian Buster.