Skip to content

Instantly share code, notes, and snippets.

@buth
buth / Dockerfile
Last active November 9, 2022 21:10
Docker Install ImageMagick
RUN \
curl -sfLO http://www.imagemagick.org/download/ImageMagick-6.9.0-4.tar.gz && \
echo 'cf51a1c6ebf627c627a8e6ac20aecce5f1425907c2cdb98c5a60f329c5c6caf2 ImageMagick-6.9.0-4.tar.gz' | sha256sum -c - && \
tar -xzf ImageMagick-6.9.0-4.tar.gz && \
cd ImageMagick-6.9.0-4 && \
./configure --prefix /usr/local && \
make install && \
cd .. && \
rm -rf ImageMagick*

Keybase proof

I hereby claim:

  • I am buth on github.
  • I am buth (https://keybase.io/buth) on keybase.
  • I have a public key ASDNSWn2sg3l9w5AP0Uc9DFz0Q8VQheJxXrruxNI66HUKwo

To claim this, I am signing this object:

{
"properties" : {
"name" : "Ayer",
"geometry" : {
"lat" : 42.56,
"lng" : -71.58
},
"city" : "Ayer",
"state" : "MA",
"zipcode" : "01432"
@buth
buth / cloud-config.yml
Created July 15, 2015 18:17
Autmoatically format and mount a drive with CoreOS Cloud-Config
#cloud-config
coreos:
units:
- name: format-drive.service
command: start
content: |
[Unit]
Description=Formats the drive
After=dev-xvdc.device
@buth
buth / cloud-config.yml
Last active May 22, 2016 20:39
HTTPS etcd with cloud-config
#cloud-config
coreos:
update:
reboot-strategy: etcd-lock
etcd:
discovery: https://discovery.etcd.io/<TOKEN>
addr: $private_ipv4:4001
peer-addr: $private_ipv4:7001
key-file: /etc/etcd-ssl/key.pem
@buth
buth / chef-server-reindex.sh
Created February 11, 2014 16:32
Rebuild the Chef-SOLR index from the database without dropping existing data.
sudo PATH=/opt/chef-server/embedded/bin:$PATH /opt/chef-server/embedded/service/erchef/bin/reindex-chef-server reindex
@buth
buth / iterator.go
Last active February 22, 2016 19:44
Generic Iterator interface and MongoDB implementation
package iterator
type Iterator interface {
Next() (value interface{}, done bool, err error)
}
@buth
buth / dm.bash
Created October 28, 2015 18:42
Bash function for setting the Docker machine environment.
dm() {
status=$(docker-machine status dev)
if [ $? -ne 0 ]; then
echo "Got an error trying to get VM status"
return
fi
case $status in
Stopped)
@buth
buth / Dockerfile
Created September 2, 2015 21:13
Install PhantomJS
ENV PHANTOMJS_VERSION=1.9.8
RUN \
cd /usr/local && \
curl -fLO https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-$PHANTOMJS_VERSION-linux-x86_64.tar.bz2 && \
tar --strip-components 1 -xjf phantomjs-$PHANTOMJS_VERSION-linux-x86_64.tar.bz2 phantomjs-$PHANTOMJS_VERSION-linux-x86_64/bin/phantomjs && \
rm phantomjs-$PHANTOMJS_VERSION-linux-x86_64.tar.bz2
@buth
buth / gist:9fcef2c106e3cc630c16
Created February 12, 2015 21:46
MongoDB authenticated Replica Set via environment variables
[Unit]
Description=mongodb
Requires=docker.service
After=docker.service
[Service]
Restart=always
RestartSec=5s
TimeoutStartSec=0
KillMode=none