Skip to content

Instantly share code, notes, and snippets.

View cschiewek's full-sized avatar
⚙️

Curtis Schiewek cschiewek

⚙️
  • Frame.io @ Adobe
  • Sudbury, ON, Canada
  • X @cschiewek
View GitHub Profile

So, I can replicate this ballooning:

$ docker -v
Docker version 17.06.2-ce, build cec0b72

Here's the base image size after doing "Reset to factory defaults"

du -h /Users/curtis/Library/Containers/com.docker.docker/Data/com.docker.driver.amd64-linux/Docker.qcow2
1.3G    /Users/curtis/Library/Containers/com.docker.docker/Data/com.docker.driver.amd64-linux/Docker.qcow2
@cschiewek
cschiewek / bloodborne.md
Last active January 22, 2018 14:45 — forked from rpt/bloodborne.md
Bloodborne Checklist
🙈 ➜ sbn git:(yarn-install-and-check) ✗ COMPOSE_FILE=docker-compose.yml docker-compose run --rm app bash
Creating network "sbn_default" with the default driver
Creating volume "sbn_node_modules" with default driver
Creating sbn_stats_1 ... done
Creating sbn_sync_1 ... done
Creating sbn_elastic_1 ... done
Creating sbn_memcached_1 ... done
Creating sbn_redis_1 ... done
Creating sbn_mysql_1 ... done
Creating sbn_dns_1 ... done
@cschiewek
cschiewek / SETUP.md
Last active May 28, 2019 15:49
Setting up your environment

There are many ways to install and configure Ruby in your development environment. If you don't have a working Ruby dev environment, this is our recommended setup for MacOS:

  • Install homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  • Install rbenv
brew install rbenv
@cschiewek
cschiewek / README.md
Last active August 29, 2019 20:44
Rails 6 Graphql ActionCable

I can't seem to get graphql subscriptions to work with the graphql gem and ActionCable 6.

The schema is able to be introspected and the following query:

subscription buildSub($buildUuid:String!) {
  build(uuid:$buildUuid) {
    uuid
    status
    success
 lastModified