This runs provides an .optim job for dragonfly and also adds the .optim job into .thumb
This requires you have the 'image_optim' gem and it's dependencies.
| ENV["WATCHR"] = "1" | |
| system 'clear' | |
| def growl(message) | |
| growlnotify = `which growlnotify`.chomp | |
| title = "Watchr Test Results" | |
| puts message | |
| image = message.match(/\s0\s(errors|failures)/) ? "~/.watchr_images/passed.png" : "~/.watchr_images/failed.png" | |
| options = "-w -n Watchr --image '#{File.expand_path(image)}' -m '#{strip_ansi(message)}' '#{title}'" | |
| system %(#{growlnotify} #{options} &) |
This runs provides an .optim job for dragonfly and also adds the .optim job into .thumb
This requires you have the 'image_optim' gem and it's dependencies.
| upstream unicorn { | |
| server unix:/tmp/unicorn.<%= application %>.sock fail_timeout=0; | |
| } | |
| server { | |
| listen 80 default deferred; | |
| # server_name example.com; | |
| root <%= current_path %>/public; | |
| if (-f $document_root/system/maintenance.html) { |
| require 'action_dispatch/middleware/session/dalli_store' | |
| # - PHP side is 5.3.6 configured with session.save_handler = memcache | |
| # - Requires php-serialize gem for serialization: https://github.com/jqr/php-serialize | |
| module ActionDispatch | |
| module Session | |
| class PhpDalliStore < ActionDispatch::Session::DalliStore | |
| require 'php_serialize' | |
| class PhpSerializingPoolDecorator < SimpleDelegator |
| Date/Time: 2013-01-15 17:31:22 +1100 | |
| OS Version: 10.8.2 (Build 12C60) | |
| Architecture: x86_64 | |
| Report Version: 11 | |
| Command: SelfControl | |
| Path: /Applications/SelfControl.app/Contents/MacOS/SelfControl | |
| Version: 1.4.4 (1.4.4) | |
| Parent: launchd [157] |
host_machine_sync_folders-patched.rb comes from YungSang/vagrant-docker-helper
| source 'https://rubygems.org' # I needed to make sure this was *https* |
I hereby claim:
To claim this, I am signing this object:
| cluster: | |
| name: kubernetes | |
| # Set to true if the nodes have the required packages installed. | |
| disable_package_installation: false | |
| # Set to true if you are performing a disconnected installation. | |
| disconnected_installation: false | |
| # Networking configuration of your cluster. |
I wanted to iterate on some images and have them available to K3s immediately, much like the Docker Desktop experience.
I also wanted to use docker buildx bake for this, but buildctl and nerdctl build should work fine too. You can omit Docker components if you don't want Buildx.