Created
July 9, 2015 09:29
-
-
Save kazuhisa/33a909b20d651d0caa95 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Installing Xymon | |
ADD ./xymon-4.3.21.tar.gz /usr/local/src/ | |
RUN cd /usr/local/src/xymon-4.3.21 && ls -l | |
RUN cd /usr/local/src/xymon-4.3.21 && ./configure --server #ここで落ちる | |
RUN cd /usr/local/src/xymon-4.3.21 && make && make install | |
# 次のように変更 | |
ADD ./xymon-4.3.21.tar.gz /usr/local/src/ | |
RUN cd /usr/local/src/xymon-4.3.21 && ls -l | |
RUN /usr/local/src/xymon-4.3.21/configure --server #変更 | |
RUN cd /usr/local/src/xymon-4.3.21 && make && make install |
Author
kazuhisa
commented
Jul 9, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment