Sign inSign up

brosenan/lyx

By brosenan

Updated about 10 years ago

Contains all required prerequisites to generate papers for the <programming17> conference + LyX

Image
1

350

brosenan/lyx repository overview

Dockerfile

FROM ubuntu:xenial RUN apt-get -y update RUN apt-get -y install lyx openssh-server RUN apt-get -y install texlive-lang-greek texlive-fonts-extra texlive-bibtex-extra texlive-math-extra

sshd configuration

RUN mkdir /var/run/sshd RUN sed -ri 's/UsePAM yes/#UsePAM yes/g' /etc/ssh/sshd_config EXPOSE 22

Create lyx home dir

RUN mkdir -p /home/lyx/project

Runtime script

COPY run-sshd.sh /root RUN chmod +x /root/run-sshd.sh CMD /root/run-sshd.sh

Usage:

  • docker run -d -v $PWD:/home/lyx/project -p 2202:22 -e LYX_UID=$(id -u):$(id -g) --name lyx brosenan/lyx
  • ssh -X -p 2202 lyx@localhost lyx

Tag summary

Content type

Image

Digest

Size

1.7 GB

Last updated

about 10 years ago

docker pull brosenan/lyx