Héctor Molinero Fernández dc2e62b6e6 Updated libjpeg-turbo to v2.1.0
2021-04-30 17:34:37 +02:00
2020-04-29 01:00:57 +02:00
2020-10-14 20:32:44 +02:00
2019-06-16 11:17:51 +02:00
2019-06-16 11:17:51 +02:00
2020-10-16 16:44:46 +02:00
2021-04-30 17:34:37 +02:00
2021-01-15 19:44:09 +01:00
2021-01-15 19:44:20 +01:00
2021-01-15 01:07:01 +01:00
2020-03-02 21:29:16 +01:00
v59
2021-04-15 00:34:02 +02:00
2020-12-24 13:21:50 +01:00

Xubuntu on Docker

A Docker image based on Ubuntu 20.04 with the Xfce desktop environment, xrdp, xrdp PulseAudio module and VirtualGL.

Start an instance

Docker CLI

docker run \
  --name xubuntu \
  --detach \
  --shm-size 2g \
  --publish 3322:3322/tcp \
  --publish 3389:3389/tcp \
  --device /dev/dri:/dev/dri \
  docker.io/hectormolinero/xubuntu:latest

Docker Compose

version: '3.8'
services:
  xubuntu:
    image: 'docker.io/hectormolinero/xubuntu:latest'
    shm_size: '2gb'
    ports:
      - '3322:3322/tcp'
      - '3389:3389/tcp'
    devices:
      - '/dev/dri:/dev/dri'

You will be able to connect to the container via SSH through 3322/tcp port and RDP through 3389/tcp port.

Important: some software (like Firefox) need the shared memory to be increased, if you encounter any problem related to this you may use the --shm-size option.

Environment variables

  • UNPRIVILEGED_USER_UID: unprivileged user UID (1000 by default).
  • UNPRIVILEGED_USER_GID: unprivileged user GID (1000 by default).
  • UNPRIVILEGED_USER_NAME: unprivileged user name (guest by default).
  • UNPRIVILEGED_USER_PASSWORD: unprivileged user password (password by default).
  • UNPRIVILEGED_USER_GROUPS: comma-separated list of additional GIDs for the unprivileged user (none by default).
  • UNPRIVILEGED_USER_SHELL: unprivileged user shell (/bin/bash by default).
  • ENABLE_XDUMMY: enable an X dummy server (false by default and requires the --privileged option).

License

See the license file.

Description
No description provided
Readme 1.6 MiB
Languages
M4 46.9%
Shell 29.3%
Makefile 23.8%