Skip to content

Instantly share code, notes, and snippets.

View fernandobatels's full-sized avatar

Luis Fernando Batels fernandobatels

View GitHub Profile
#!/bin/ruby
require 'json'
require 'rugged'
require 'fileutils'
repo_url = 'https://github.com/outages/vultr-outages.git'
clone_path = '/tmp/vultr-outages'
if !Dir.exist?(clone_path)
@fernandobatels
fernandobatels / Dockerfile
Last active August 19, 2020 11:47
Flamerobin for Firebird 3.0
FROM ubuntu:18.04
RUN apt-get update && apt-get install -y flamerobin
RUN mkdir /root/.flamerobin
ENTRYPOINT [ "flamerobin" ]