-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP: Switch to thewtex/centos-build:v1.0.0 base for Slicer compatibility #2
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/bash | ||
|
||
xsetroot -solid "#333333" | ||
(sleep 2s && tint2 -c /etc/xdg/tint2/tint2rc) & | ||
#(sleep 2s && tint2 -c /etc/xdg/tint2/tint2rc) & | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why was this removed? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That was a change made by @jcfr to be able to use X11 on centos. |
||
openbox |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM thewtex/opengl:latest | ||
FROM slicer/opengl:latest | ||
MAINTAINER Matt McCormick <matt.mccormick@kitware.com> | ||
|
||
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \ | ||
mesa-utils | ||
RUN yum update -y && \ | ||
yum install -y glx-utils | ||
|
||
ENV APP "glxgears" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/bin/bash | ||
|
||
container=opengl | ||
image=thewtex/opengl | ||
image=slicer/opengl | ||
port=6080 | ||
extra_run_args="" | ||
quiet="" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please retain the current default. Also, please rebase this branch on
master
, which has parameterized Makefile build support.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@thewtex If we retain the current default
thewtex/opengl
there will be 2 same name for 2 different docker image.. I suggest to rename it intothewtex/centos-opengl
orcentos/opengl
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider using different tag. E.g
thewtex/opengl:jessie-1.0.0
,thewtex/opengl:centos-1.0.0
, ...There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1