I hereby claim:
- I am rcreasey on github.
- I am rcreasey (https://keybase.io/rcreasey) on keybase.
- I have a public key whose fingerprint is 09FC EE87 D2E9 1FB6 E0C9 D4C5 84A9 DBCB 8138 AD2D
To claim this, I am signing this object:
| The push refers to a repository [dtr.domain.tld/base] (len: 1) | |
| 52cea98eeec6: Image push failed | |
| FATA[0000] Error pushing to registry: Get https://dtr.domain.tld/auth/token?scope=repository%3Abase%3Apull%2Cpush&service=dtr.domain.tld: x509: certificate signed by unknown authority |
| PitBull4DB = { | |
| ["namespaces"] = { | |
| ["Highlight"] = { | |
| ["profiles"] = { | |
| ["Default"] = { | |
| ["layouts"] = { | |
| ["Player"] = { | |
| ["enabled"] = false, | |
| }, |
| #cloud-config | |
| --- | |
| coreos: | |
| etcd2: | |
| advertise-client-urls: http://$public_ipv4:2379 | |
| initial-advertise-peer-urls: http://$public_ipv4:2380 | |
| listen-client-urls: http://$public_ipv4:2379 | |
| listen-peer-urls: http://$public_ipv4:2380 | |
| initial-cluster-state: new |
| #!/bin/sh | |
| BOOT2DOCKER_CERTS_DIR=/var/lib/boot2docker/certs | |
| CERTS_DIR=/etc/ssl/certs | |
| CAFILE=${CERTS_DIR}/ca-certificates.crt | |
| for cert in $(/bin/ls -1 ${BOOT2DOCKER_CERTS_DIR}); do | |
| SRC_CERT_FILE=${BOOT2DOCKER_CERTS_DIR}/${cert} | |
| CERT_FILE=${CERTS_DIR}/${cert} | |
| HASH_FILE=${CERTS_DIR}/$(/usr/local/bin/openssl x509 -noout -hash -in ${SRC_CERT_FILE} 2>/dev/null) |
I hereby claim:
To claim this, I am signing this object:
| ~/D/fizzbuz » docker build -t fizzbuz . rcreasey@arkham | |
| Sending build context to Docker daemon 2.56 kB | |
| Sending build context to Docker daemon | |
| Step 0 : FROM ubuntu:14.04 | |
| ---> 2103b00b3fdf | |
| Step 1 : MAINTAINER Ryan Creasey <[email protected]> | |
| ---> Using cache | |
| ---> 2faca7c2cae8 | |
| Step 2 : RUN apt-get update && apt-get install -y python | |
| ---> Using cache |
| SELECT | |
| t.typeName, | |
| g.groupName, | |
| t.published, | |
| mg.metaGroupName metaGroupName | |
| FROM | |
| invTypes AS t INNER JOIN | |
| invGroups AS g ON t.groupID = g.groupID LEFT OUTER JOIN | |
| invMetaTypes AS mt ON t.typeID = mt.typeID LEFT OUTER JOIN | |
| invMetaGroups AS mg ON mt.metaGroupID = mg.metaGroupID LEFT OUTER JOIN |
| https://www.youtube.com/watch?v=R0RNkkd2peE |
| -----BEGIN CERTIFICATE----- | |
| MIIFZDCCBEygAwIBAgIQPXkfbGOP+0NFRmhZiVLwhzANBgkqhkiG9w0BAQsFADCB | |
| kDELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G | |
| A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxNjA0BgNV | |
| BAMTLUNPTU9ETyBSU0EgRG9tYWluIFZhbGlkYXRpb24gU2VjdXJlIFNlcnZlciBD | |
| QTAeFw0xNDA5MTkwMDAwMDBaFw0xOTA5MTgyMzU5NTlaMGExITAfBgNVBAsTGERv | |
| bWFpbiBDb250cm9sIFZhbGlkYXRlZDEdMBsGA1UECxMUUG9zaXRpdmVTU0wgV2ls | |
| ZGNhcmQxHTAbBgNVBAMUFCouYXBwcy5nb29uc3dhcm0ub3JnMIIBIjANBgkqhkiG | |
| 9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtp/jUnqc8bX1e020papcA0nnKHhKHRhUWq7A | |
| UO13Ll6Vpc03LMbupxc0xJXB0caJL9cbKFxxWQT88PTVKxCcZXtqXmmUP8r5EziL |
| FROM ubuntu:trusty | |
| MAINTAINER Ryan Creasey <[email protected]> | |
| # Install required dependencies | |
| RUN apt-get update && \ | |
| apt-get install -y apt-transport-https locales git make \ | |
| curl software-properties-common \ | |
| nginx dnsutils aufs-tools \ | |
| dpkg-dev openssh-server man-db | |
| RUN apt-get install -y apache2-utils |