Patrick Chanezon

Results 5 comments of Patrick Chanezon

Regarding OCI (Open Container Initiative), it is an active project, and there is a reference implementation that is actively developed called runC. You can run it today. The list of...

FROM jboss/wildfly:latest USER root RUN yum install -y epel-release && \ yum install -y jq && \ yum clean all USER jboss COPY check-for-bucket.sh /opt/jboss/wildfly/check-for-bucket.sh #RUN /opt/jboss/wildfly/check-for-bucket.sh COPY couchbase-javaee.war /opt/jboss/wildfly/standalone/deployments/airlines.war

jq needs epel on centos. yum. eeds to run as root. not sure why you need to populate the db when. uilding the image, it should happen at runtime

I'm following the java labs which points there to build the image. I wanted to fix the app to add timeout. If it's too broken I'll submit another tutorial instead

Glad that @bfirsh open sourced it: that was the Viz we used in Dockercon 2015 keynote. It's quick and dirty (2 days work) and needs some additional work, but I...