https://github.com/b-galati/dockerfiles
Various docker images I create
https://github.com/b-galati/dockerfiles
Last synced: 12 days ago
JSON representation
Various docker images I create
- Host: GitHub
- URL: https://github.com/b-galati/dockerfiles
- Owner: B-Galati
- License: mit
- Created: 2015-09-25T22:13:41.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2022-01-31T20:51:17.000Z (almost 4 years ago)
- Last Synced: 2025-10-29T02:46:24.523Z (3 months ago)
- Language: Dockerfile
- Size: 39.1 KB
- Stars: 5
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dockerfiles
Various docker images I create
# X server access control for GUI images
Make sure to set the right permission to the X server for your docker user by running this command :
```bash
xhost +SI:localuser:$(id -un)
```
Or if you are running docker as root :
```bash
xhost +SI:localuser:root
```
If you have any doubt you can also authorize anyone to connect to your X server but it's not recommended :
```bash
xhost +
```