From 3294fdea1fb2f8dbd6a91410a5532d6d24c78158 Mon Sep 17 00:00:00 2001 From: chuck-knox Date: Sun, 3 Jul 2016 12:50:55 -0700 Subject: [PATCH] Sublime Text 3: No longer writes as root everywhere, other improvements --- sublime-text-3/Dockerfile | 42 +++++++++++++++++++++++++++++++-------- sublime-text-3/run.sh | 17 ++++++++++++++++ 2 files changed, 51 insertions(+), 8 deletions(-) create mode 100644 sublime-text-3/run.sh diff --git a/sublime-text-3/Dockerfile b/sublime-text-3/Dockerfile index 4756a37..83e3646 100644 --- a/sublime-text-3/Dockerfile +++ b/sublime-text-3/Dockerfile @@ -1,16 +1,22 @@ -# VERSION: 0.1 +# VERSION: 0.2 # DESCRIPTION: Create sublime-text 3 container with its dependencies (https://www.sublimetext.com/3) -# AUTHOR: Christian Koep +# AUTHORS: Christian Koep , Chuck Knox # USAGE: # # Build sublime-text 3 image # docker build -t sublime-text:3 . # # # Run the container and mount the local settings and your code -# docker run -it \ -# -v $HOME/.config/sublime-text-3/:/root/.config/sublime-text-3 \ -# -v $HOME/development:/root/development \ -# -v /tmp/.X11-unix:/tmp/.X11-unix \ -# -e DISPLAY=$DISPLAY sublime-text:3 +# # Your code must be under $HOME/Documents, you only need to change it here. +# docker run -d -it \ +# -w $HOME/Documents \ +# -v $HOME/.config/sublime-text-3:$HOME/.config/sublime-text-3 \ +# -v $HOME/Documents:$HOME/Documents \ +# -v /tmp/.X11-unix:/tmp/.X11-unix \ +# -v $HOME/.local/share/recently-used.xbel:$HOME/.local/share/recently-used.xbel \ +# -e DISPLAY=$DISPLAY \ +# -e NEWUSER=$USER \ +# -e LANG=en_US.UTF-8 \ +# sublime-text:3 # # POSSIBLE ISSUES: # # 'Gtk: cannot open display: :0' @@ -21,7 +27,10 @@ FROM debian:jessie MAINTAINER Christian Koep +# Installing the libcanberra-gtk-module gets rid of a lot of annoying error messages. RUN apt-get update && apt-get -y install \ + locales \ + libcanberra-gtk-module \ ca-certificates \ curl \ tar \ @@ -40,4 +49,21 @@ RUN curl -sSL "https://download.sublimetext.com/sublime_text_3_build_3114_x64.ta && tar -xjf /tmp/sublime.tar.bz2 -C /usr/src/sublime_text --strip-components 1 \ && rm /tmp/sublime.tar.bz2* -CMD ["/usr/src/sublime_text/sublime_text", "-w"] +# Generate system-wide UTF-8 locale +# Sublime might nag about Ascii issue w/ Package Control otherwise +RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && \ + locale-gen && \ + echo "LANG=en_US.UTF-8" > /etc/locale.conf + +# In order to prevent writing as root:root in Sublime, we have to run the Sublime Text container +# as the user that creates the container. Normally we do this by passing $UID. +# But just passing $UID along isn't enough - Sublime has to be started by a user that exists. +# By default in the container, the only user that actually exists is root. +# Therefore we have to create a new user, and start Sublime as that user. +# This is not possible at build time, so the /run.sh script accepts an environment +# variable called $NEWUSER that creates a user and group named $USER. +# Additional note: Sublime puts a lot of stuff in ~/.config, which is mounted at runtime. Without this directory being mounted, settings/packages/etc won't persist. +COPY run.sh /run.sh +RUN chmod +x /run.sh + +CMD ["/run.sh"] diff --git a/sublime-text-3/run.sh b/sublime-text-3/run.sh new file mode 100644 index 0000000..d97c0c3 --- /dev/null +++ b/sublime-text-3/run.sh @@ -0,0 +1,17 @@ +#!/bin/bash +set -e +if [ -z ${NEWUSER+x} ]; then + echo 'WARN: No user was defined, defaulting to root.' + echo 'WARN: Sublime will save files as root:root.' + echo ' To prevent this, start the container with -e NEWUSER=$USER' + /usr/src/sublime_text/sublime_text -w +else + # The root user already exists, so we only need to do something if + # a user has been specified. + useradd -s /bin/bash $NEWUSER + # If you'd like to have Sublime Text add your development folder + # to the current project (i.e. in the sidebar at start), append + # "-a /home/$NEWUSER/Documents" (without quotes) into the su -c command below. + # Example: su $NEWUSER -c "/usr/src/sublime_text/sublime_text -w -a /home/$NEWUSER/Documents" + su $NEWUSER -c "/usr/src/sublime_text/sublime_text -w" +fi