go to post richard samuels · Feb 6, 2019 noticed it has created a iconfig folder on my nfs share but nothing else and nothing else inside, it did moan on the previous attempt that it couldn't find the password and license files so moved them down a folder level.
go to post richard samuels · Feb 6, 2019 Weirdly enough I just noticed about 10 mins ago on my document I have missed the " on the password cmd. So ran it and got thisthought great than checked the logs and got the followingim just redownloading the license key now, just going to re run the image creation with the latest release, just in case the license is version specific
go to post richard samuels · Feb 5, 2019 Done a few runs, but keep getting the following error highlighted in yellowthis is where the volume is locatedAnd this is whats located on the share
go to post richard samuels · Feb 5, 2019 Hi Jon1. docker run -d --name IRIS2 efca5c59cbb72. docker run -d --name IRIS2 efca5c59cbb7 -p 52774:527743. docker run -d --name IRIS2 efca5c59cbb7 -p 52774:52774 -v /nfs/IRIS:/IRIS4. docker run -d --name IRIS2 efca5c59cbb7 -p 52774:52774 -v /nfs/IRIS:/IRIS --ENV ISC_DATA_DIRECTORY=/IRIS/iconfig5. docker run -d --name IRIS2 efca5c59cbb7 -p 52774:52774 -v /nfs/IRIS:/IRIS --ENV ISC_DATA_DIRECTORY=/IRIS/iconfig --env ICM_SENTINEL_DIR=/license IRIS6. docker run -d --name IRIS2 efca5c59cbb7 -p 52774:52774 -v /nfs/IRIS:/IRIS --ENV ISC_DATA_DIRECTORY=/IRIS/iconfig --env ICM_SENTINEL_DIR=/license IRIS --key /IRIS/iris.key7. docker run -d --name IRIS2 efca5c59cbb7 -p 52774:52774 -v /nfs/IRIS:/IRIS --ENV ISC_DATA_DIRECTORY=/IRIS/iconfig --env ICM_SENTINEL_DIR=/license IRIS --key /IRIS/iris.key --before /usr/irissys/dev/Cloud/ICM/changePassword.sh /IRIS/password.txtAll created fine but all exit on creationSo have also tried.8. docker run -d --privileged -v /nfs/IRIS:/IRIS --env ISC_DATA_DIRECTORY=/IRIS/iconfig --env ICM_SENTINEL_DIR=/license iris --name IRIS4 efca5c59cbb7 -p 52774:52774 --key /IRIS/iris.key --before /usr/irissys/dev/Cloud/ICM/changePassword.sh /IRIS/password.txtthan tried this --env ICM_SENTINEL_DIR=/license instead of --env ICM_SENTINEL_DIR=/license iris9. docker run -d --privileged -v /nfs/IRIS:/IRIS --env ISC_DATA_DIRECTORY=/IRIS/iconfig --env ICM_SENTINEL_DIR=/license --name IRIS4 efca5c59cbb7 -p 52774:52774 --key /IRIS/iris.key --before /usr/irissys/dev/Cloud/ICM/changePassword.sh /IRIS/password.txt
go to post richard samuels · Feb 1, 2019 HI jonre jigged the script as you have suggested, it than creates the container but status isn't up and I get the error seen belowWhen I tweak the script slightly I get the following error, putting both --env options before the image name.
go to post richard samuels · Jan 31, 2019 Hi Jimupdated the cmd to include --env, but still the same issuechecked the logs and the error is coming up as the followingPARSE ERROR: Argument: --volume Couldn't find match for argumentLooks like I got my volume parameters wrong
go to post richard samuels · Oct 11, 2018 Just seeing if it is possible, the end goal is so that we only have live users setup on the system and don't have any dormant accounts laying around
go to post richard samuels · Sep 27, 2018 the storage driver at the moment is overlay2 , how do I go about changing it to aufs.Ive looked on the internet but it always seems the instructions are going from aufs to something else and not vice versa.this is current state of the install after running the docker run cmddocker psCONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMESdocker imagesREPOSITORY TAG IMAGE ID CREATED SIZEensemble-simple latest f0f078fe077e 52 minutes ago 3.53 GBdocker.io/centos 6 b5e5ffb5cdea 7 weeks ago 194 MBdocker ps -aCONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES729f26974733 ensemble-simple:latest "/ccontainermain -..." 29 mins Exited (1) 29 mins ago gifted_nobelc3d623142529 ensemble-simple:latest "/ccontainermain -..." 29 mins Exited (1) 29 mins ago mystifying_williamsdd02951364cf ensemble-simple "/ccontainermain -..." 49 mins Exited (1) 49 mins ago affectionate_liskov0eba399201a3 2f6ded0c1a4b "/bin/sh -c '#(nop..." About an hour ago Created happy_tesla
go to post richard samuels · Sep 27, 2018 the latest version of docker for redhat I can find is 1.13.1-58.git87f2fab.el7 and not v18.06Looking further into it v18.0 is for docker ce, is this the same as what is v1.13.1-58.git87f2fab.el7 for redhat
go to post richard samuels · Sep 27, 2018 Hi DmitryWas in the middle of the editing the response when you repliedwhen I rundocker run -d -p 57779:57772 -p 1979:1972 ensemble-simpleAll I get is a very long alphanumeric entryWhen I run docker psthe entry is blank so looks like ensemble isn't running
go to post richard samuels · Sep 27, 2018 Dockerfile below, I have now changed it to reflect yours , and for some strange reason it has installed the software rather than created the image, after it finished the install I ran the docker images cmd and I can now see the image in the repository, but when I rundocker run -d -p 57779:57772 -p 1979:1972 ensemble-simpleAll I get is a very long alphanumeric entryWhen I run docker psthe entry is blank so looks like ensemble isn't running FROM centos:6 MAINTAINER Richard <> # update OS + dependencies & run Caché silent instal RUN yum -y update \ && yum -y install which tar hostname net-tools wget \ && yum -y clean all \ && ln -sf /etc/locatime /usr/share/zoneinfo/Europe/London ARG password="******" ARG cache=ensemble-2016.2.3.903.6 ENV TMP_INSTALL_DIR=/tmp/distrib # vars for Caché silent install ENV ISC_PACKAGE_INSTANCENAME="TEST" \ ISC_PACKAGE_INSTALLDIR="/opt/ensemble/" \ ISC_PACKAGE_UNICODE="Y" \ ISC_PACKAGE_CLIENT_COMPONENTS="" \ ISC_PACKAGE_INITIAL_SECURITY="Normal" \ ISC_PACKAGE_USER_PASSWORD=${password} # set-up and install Caché from distrib_tmp dir WORKDIR ${TMP_INSTALL_DIR} ADD $cache-lnxrhx64.tar.gz . # cache distributive RUN ./$cache-lnxrhx64/cinstall_silent \ && ccontrol stop $ISC_PACKAGE_INSTANCENAME quietly \ # Caché container main process PID 1 (https://github.com/zrml/ccontainermain) && curl -L https://github.com/daimor/ccontainermain/raw/master/distrib/linux/ccontainermain -o /ccontainermain \ && chmod +x /ccontainermain \ && rm -rf $TMP_INSTALL_DIR WORKDIR ${ISC_PACKAGE_INSTALLDIR} # TCP sockets that can be accessed if user wants to (see 'docker run -p' flag) EXPOSE 57772 1972 ENTRYPOINT ["/ccontainermain", "-cconsole", "-i", "ensemble"]
go to post richard samuels · Sep 26, 2018 I get the following message when trying to build the imageStep 9/13 : ADD $ensemble-2016.2.3.903.6-lnxrhx64.tar.gz .lstat -2016.2.3.903.6-lnxrhx64.tar.gz: no such file or directory not sure why