Sha256: 3a056c8ce89c63d9f59e0347379278b637eb99b4f6da47c04b0961eb7174add2

Contents?: true

Size: 1.69 KB

Versions: 129

Compression:

Stored size: 1.69 KB

Contents

# The main Smartcloud Grids Mysql driver
module Smartcloud
	module Grids
		class Mysql
			def initialize
			end

			def self.up(exposed)
				if Smartcloud::Docker.running?
					# Creating networks
					unless system("docker network inspect mysql-network", [:out, :err] => File::NULL)
						print "-----> Creating network mysql-network ... "
						if system("docker network create mysql-network", out: File::NULL)
							puts "done"
						end
					end

					# Creating & Starting containers
					print "-----> Creating container mysql ... "
					if system("docker create \
						--name='mysql' \
						--env MYSQL_RANDOM_ROOT_PASSWORD=yes \
						#{"--publish='3306:3306'" if exposed == '--exposed'} \
						--volume='#{Smartcloud.config.user_home_path}/.smartcloud/grids/grid-mysql/data:/var/lib/mysql' \
						--restart='always' \
						--network='mysql-network' \
						mysql:5.7.27 \
						--default-authentication-plugin=mysql_native_password", out: File::NULL)

						puts "done"
						print "-----> Starting container mysql ... "
						if system("docker start mysql", out: File::NULL)
							puts "done"
						end
					end
				end
			end
	
			def self.down
				if Smartcloud::Docker.running?
					# Stopping & Removing containers - in reverse order
					print "-----> Stopping container mysql ... "
					if system("docker stop 'mysql'", out: File::NULL)
						puts "done"
						print "-----> Removing container mysql ... "
						if system("docker rm 'mysql'", out: File::NULL)
							puts "done"
						end
					end

					# Removing networks
					print "-----> Removing network mysql-network ... "
					if system("docker network rm mysql-network", out: File::NULL)
						puts "done"
					end
				end
			end			
		end
	end
end

Version data entries

129 entries across 129 versions & 1 rubygems

Version Path
smartcloud-0.0.159 lib/smartcloud/grids/mysql.rb
smartcloud-0.0.158 lib/smartcloud/grids/mysql.rb
smartcloud-0.0.157 lib/smartcloud/grids/mysql.rb
smartcloud-0.0.156 lib/smartcloud/grids/mysql.rb
smartcloud-0.0.155 lib/smartcloud/grids/mysql.rb
smartcloud-0.0.154 lib/smartcloud/grids/mysql.rb
smartcloud-0.0.153 lib/smartcloud/grids/mysql.rb
smartcloud-0.0.152 lib/smartcloud/grids/mysql.rb
smartcloud-0.0.151 lib/smartcloud/grids/mysql.rb
smartcloud-0.0.150 lib/smartcloud/grids/mysql.rb
smartcloud-0.0.149 lib/smartcloud/grids/mysql.rb
smartcloud-0.0.148 lib/smartcloud/grids/mysql.rb
smartcloud-0.0.147 lib/smartcloud/grids/mysql.rb
smartcloud-0.0.146 lib/smartcloud/grids/mysql.rb
smartcloud-0.0.145 lib/smartcloud/grids/mysql.rb
smartcloud-0.0.144 lib/smartcloud/grids/mysql.rb
smartcloud-0.0.143 lib/smartcloud/grids/mysql.rb
smartcloud-0.0.142 lib/smartcloud/grids/mysql.rb
smartcloud-0.0.141 lib/smartcloud/grids/mysql.rb
smartcloud-0.0.140 lib/smartcloud/grids/mysql.rb