Sha256: 2ccfa24fd648cdaddd72c696adb6dcd1b9ca1830683d52913fc6c8b9403148ef
Contents?: true
Size: 1.36 KB
Versions: 2
Compression:
Stored size: 1.36 KB
Contents
require 'droplet_kit' require 'yaml' module Docker SPECIAL_OPTS = ["image", "ports", "command", "post-conditions"] DEFAULT_USER = "root" def self.containers_for(host_name) config_file = "#{Ops::CONTAINERS_DIR}/#{host_name}.yml" begin config = YAML.load_file config_file rescue raise "Please, create '#{config_file}' file with all containers configured" end end def self.copy_ssh_credentials_command(container_name) <<-EOH # Container folder if sudo test -d "/var/lib/docker/aufs"; then CONTAINERS_DIR=/var/lib/docker/aufs/mnt elif sudo test -d "/var/lib/docker/btrfs"; then CONTAINERS_DIR=/var/lib/docker/btrfs/subvolumes fi ID=$(docker inspect -f '{{.Id}}' #{container_name}) SSH_DIR=$CONTAINERS_DIR/$ID/root/.ssh echo SSH container folder is $SSH_DIR if sudo test ! -d "$SSH_DIR" ; then sudo mkdir $SSH_DIR fi echo Copying authorized_keys and id_rsa.pub files sudo touch $SSH_DIR/authorized_keys sudo cat ~/.ssh/authorized_keys | sudo tee -a $SSH_DIR/authorized_keys sudo cat ~/.ssh/id_rsa.pub | sudo tee -a $SSH_DIR/authorized_keys sudo chmod 600 $SSH_DIR/authorized_keys EOH end def self.get_container_port(container_config) container_config["ports"].select{|port| port.end_with? ":22"}[0].split(':')[0] end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
open-dock-0.1.5 | lib/open-dock/docker.rb |
open-dock-0.1.3 | lib/open-dock/docker.rb |