@@ -62,9 +62,9 @@ class Config < DockerEngineRuby::Internal::Type::BaseModel
6262 #
6363 # `{"<port>/<tcp|udp|sctp>": {}}`
6464 #
65- # @return [Hash{Symbol=>Object}, nil]
65+ # @return [Hash{Symbol=>Hash{Symbol=> Object} }, nil]
6666 optional :exposed_ports ,
67- DockerEngineRuby ::Internal ::Type ::HashOf [ DockerEngineRuby ::Internal ::Type ::Unknown ] ,
67+ DockerEngineRuby ::Internal ::Type ::HashOf [ DockerEngineRuby ::Internal ::Type ::HashOf [ DockerEngineRuby :: Internal :: Type :: Unknown ] ] ,
6868 api_name : :ExposedPorts ,
6969 nil? : true
7070
@@ -158,9 +158,9 @@ class Config < DockerEngineRuby::Internal::Type::BaseModel
158158 # @!attribute volumes
159159 # An object mapping mount point paths inside the container to empty objects.
160160 #
161- # @return [Hash{Symbol=>Object}, nil]
161+ # @return [Hash{Symbol=>Hash{Symbol=> Object} }, nil]
162162 optional :volumes ,
163- DockerEngineRuby ::Internal ::Type ::HashOf [ DockerEngineRuby ::Internal ::Type ::Unknown ] ,
163+ DockerEngineRuby ::Internal ::Type ::HashOf [ DockerEngineRuby ::Internal ::Type ::HashOf [ DockerEngineRuby :: Internal :: Type :: Unknown ] ] ,
164164 api_name : :Volumes
165165
166166 # @!attribute working_dir
@@ -191,7 +191,7 @@ class Config < DockerEngineRuby::Internal::Type::BaseModel
191191 #
192192 # @param env [Array<String>] A list of environment variables to set inside the container in the
193193 #
194- # @param exposed_ports [Hash{Symbol=>Object}, nil] An object mapping ports to an empty object in the form:
194+ # @param exposed_ports [Hash{Symbol=>Hash{Symbol=> Object} }, nil] An object mapping ports to an empty object in the form:
195195 #
196196 # @param healthcheck [DockerEngineRuby::Models::Config::Healthcheck] A test to perform to check that the container is healthy.
197197 #
@@ -219,7 +219,7 @@ class Config < DockerEngineRuby::Internal::Type::BaseModel
219219 #
220220 # @param user [String] Commands run as this user inside the container. If omitted, commands
221221 #
222- # @param volumes [Hash{Symbol=>Object}] An object mapping mount point paths inside the container to empty
222+ # @param volumes [Hash{Symbol=>Hash{Symbol=> Object} }] An object mapping mount point paths inside the container to empty
223223 #
224224 # @param working_dir [String] The working directory for commands to run in.
225225
0 commit comments