class Falcon::Controller::Host

def create_container

def create_container
	@command.container_class.new
end

def initialize(command, **options)

def initialize(command, **options)
	@command = command
	
	@configuration = command.configuration
	@services = Services.new(@configuration)
	
	super(**options)
end

def setup(container)

def setup(container)
	@services.setup(container)
end

def start

def start
	@services.start
	
	super
end

def stop(*)

def stop(*)
	@services.stop
	
	super
end