{"id":11582,"date":"2018-08-28T07:16:19","date_gmt":"2018-08-28T05:16:19","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/"},"modified":"2024-09-10T17:32:25","modified_gmt":"2024-09-10T15:32:25","slug":"deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/","title":{"rendered":"Deploy WebLogic docker images using Docker Toolbox and Virtual Box on Windows"},"content":{"rendered":"<p>I was interested to run Docker on my Windows machine and found out the\u00a0Docker Toolbox for Windows that configure itself with the already installed VirtualBox at installation time.<\/p>\n<p>Once installed, You can start the Docker QuickStart shell preconfigured for a Docker command-line environment. At startup time it will start a VM named default and will be ready to work with Docker.<br \/>\n<code>Starting \"default\"...<br \/>\n(default) Check network to re-create if needed...<br \/>\n(default) Waiting for an IP...<br \/>\nMachine \"default\" was started.<br \/>\nWaiting for SSH to be available...<br \/>\nDetecting the provisioner...<br \/>\nStarted machines may have new IP addresses. You may need to re-run the `docker-machine env` command.<br \/>\nRegenerate TLS machine certs? Warning: this is irreversible. (y\/n): Regenerating TLS certificates<br \/>\nWaiting for SSH to be available...<br \/>\nDetecting the provisioner...<br \/>\nCopying certs to the local machine directory...<br \/>\nCopying certs to the remote machine...<br \/>\nSetting Docker configuration on the remote daemon...<\/p>\n<p>                        ##         .<br \/>\n                  ## ## ##        ==<br \/>\n               ## ## ## ## ##    ===<br \/>\n           \/\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\\___\/ ===<br \/>\n      ~~~ {~~ ~~~~ ~~~ ~~~~ ~~~ ~ \/  ===- ~~~<br \/>\n           \\______ o           __\/<br \/>\n             \\    \\         __\/<br \/>\n              \\____\\_______\/<\/code><\/p>\n<p>docker is configured to use the default machine with IP 192.168.99.100<br \/>\nFor help getting started, check out the docs at https:\/\/docs.docker.com<\/p>\n<p>Start interactive shell<br \/>\n$<br \/>\nThe &#8220;docker-machine env&#8221; displays the machine environment that has been created:<br \/>\n<code>$ docker-machine env<br \/>\nexport DOCKER_TLS_VERIFY=\"1\"<br \/>\nexport DOCKER_HOST=\"tcp:\/\/192.168.99.100:2376\"<br \/>\nexport DOCKER_CERT_PATH=\"C:\\Users\\PBR\\.docker\\machine\\machines\\default\"<br \/>\nexport DOCKER_MACHINE_NAME=\"default\"<br \/>\nexport COMPOSE_CONVERT_WINDOWS_PATHS=\"true\"<br \/>\n# Run this command to configure your shell:<br \/>\n# eval $(\"C:\\Program Files\\Docker Toolbox\\docker-machine.exe\" env)<br \/>\n<\/code><\/p>\n<p>Here is how to directly set the environment from it:<\/p>\n<p><code>$ eval $(\"C:\\Program Files\\Docker Toolbox\\docker-machine.exe\" env)<br \/>\n<\/code><\/p>\n<p>Once the environment is set, it can be displayed as follow:<\/p>\n<p><code><br \/>\n$ docker info<br \/>\nContainers: 9<br \/>\nRunning: 0<br \/>\nPaused: 0<br \/>\nStopped: 9<br \/>\nImages: 2<br \/>\nServer Version: 18.06.0-ce<br \/>\nStorage Driver: aufs<br \/>\nRoot Dir: \/mnt\/sda1\/var\/lib\/docker\/aufs<br \/>\nBacking Filesystem: extfs<br \/>\nDirs: 34<br \/>\nDirperm1 Supported: true<br \/>\nLogging Driver: json-file<br \/>\nCgroup Driver: cgroupfs<br \/>\nPlugins:<br \/>\nVolume: local<br \/>\nNetwork: bridge host macvlan null overlay<br \/>\nLog: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog<br \/>\nSwarm: inactive<br \/>\nRuntimes: runc<br \/>\nDefault Runtime: runc<br \/>\nInit Binary: docker-init<br \/>\ncontainerd version: d64c661f1d51c48782c9cec8fda7604785f93587<br \/>\nrunc version: 69663f0bd4b60df09991c08812a60108003fa340<br \/>\ninit version: fec3683<br \/>\nSecurity Options:<br \/>\nseccomp<br \/>\nProfile: default<br \/>\nKernel Version: 4.9.93-boot2docker<br \/>\nOperating System: Boot2Docker 18.06.0-ce (TCL 8.2.1); HEAD : 1f40eb2 - Thu Jul 19 18:48:09 UTC 2018<br \/>\nOSType: linux<br \/>\nArchitecture: x86_64<br \/>\nCPUs: 1<br \/>\nTotal Memory: 1.955GiB<br \/>\nName: default<br \/>\nID: AV7B:Z7GA:ZWLU:SNMY:ALYL:WTCT:2X2F:NHPY:2TRP:VK27:JY3L:PHJO<br \/>\nDocker Root Dir: \/mnt\/sda1\/var\/lib\/docker<br \/>\nDebug Mode (client): false<br \/>\nDebug Mode (server): false<br \/>\nUsername: pbrand<br \/>\nRegistry: https:\/\/index.docker.io\/v1\/<br \/>\nLabels:<br \/>\nprovider=virtualbox<br \/>\nExperimental: false<br \/>\nInsecure Registries:<br \/>\n127.0.0.0\/8<br \/>\nLive Restore Enabled: false<br \/>\n<\/code><\/p>\n<p>I will use a Docker image provided by Oracle on the Docker store: the Oracle WebLogic 12.2.1.3 image. First I need to sign in to the Docker Store<\/p>\n<p><code>docker login<br \/>\nLogin with your Docker ID to push and pull images from Docker Hub. If you don't have a Docker ID, head over to https:\/\/hub.docker.com to create one.<br \/>\nUsername: pbrand<br \/>\nPassword:<br \/>\nLogin Succeeded<br \/>\n<\/code><\/p>\n<p>Then I can pull the Oracle WebLogic 12.2.1.3 image<\/p>\n<p><code><br \/>\ndocker pull store\/oracle\/weblogic:12.2.1.3<br \/>\n12.2.1.3: Pulling from store\/oracle\/weblogic<br \/>\n9fd8609e6e4d: Pull complete<br \/>\neac7b4a33e34: Pull complete<br \/>\nb6f7d13c859b: Pull complete<br \/>\ne0ca246b2272: Pull complete<br \/>\n7ba4d6bfba43: Pull complete<br \/>\n5e3b8c4731f0: Pull complete<br \/>\n97623ceb6339: Pull complete<br \/>\nDigest: sha256:4c7ce451c093329784a2808a55cd4fc4f1e93d8444b8492a24148d283936add9<br \/>\nStatus: Downloaded newer image for store\/oracle\/weblogic:12.2.1.3<br \/>\n<\/code><\/p>\n<p>Display all images in my Docker:<\/p>\n<p><code><br \/>\n$ docker images<br \/>\nREPOSITORY TAG IMAGE ID CREATED SIZE<br \/>\nstore\/oracle\/weblogic 12.2.1.3 c6bb22ff0ea8 2 weeks ago 1.14GB<br \/>\n<\/code><\/p>\n<p>In the docker repository, for the Oracle WebLogic 12.2.1.3 image, it is written that the Administrator user should be provided using a domain.properties file having the format below and provided in the command lline to start the Docker image.<br \/>\nThe format of the domain.properties file is key value pair:<br \/>\n<code><br \/>\nusername=myadminusername<br \/>\npassword=myadminpassword<br \/>\n<\/code><\/p>\n<p>The command line suggested is the following:<\/p>\n<p><code><br \/>\n$ docker run -d -p 7001:7001 -p 9002:9002 -v $PWD\/domain.properties:\/u01\/oracle\/properties\/domain.properties store\/oracle\/weblogic:12.2.1.3<br \/>\n<\/code><\/p>\n<p>This run command is fine on Linux but doesn&#8217;t suite to Windows environment. The created domain.properties file is on the C: drive on windows and the mapping can&#8217;t use environment variables like PWD.<br \/>\nIn my case, the Docker run command to run is the following:<br \/>\n<code><br \/>\n$ docker run -d --name wls12213 -p 7001:7001 -p 9002:9002 -v \/\/c\/Users\/PBR\/docker_weblogic\/domain.properties:\/u01\/oracle\/properties\/domain.properties store\/oracle\/weblogic:12.2.1.3<br \/>\n670fc3bd2c8131b71ecc6a182181d1f03a4832a4c0e8d9d530e325e759afe151<br \/>\n<\/code><br \/>\nWith the -d option it displays only the instance ID, no logs.<\/p>\n<p>Checking the logs using the Docker log command:<br \/>\n<code><br \/>\n$ docker logs wls12213<\/code><\/p>\n<p><code>Initializing WebLogic Scripting Tool (WLST) ...<\/p>\n<p>Welcome to WebLogic Server Administration Scripting Shell<\/p>\n<p>Type help() for help on available commands<\/p>\n<p>domain_name : [base_domain]<br \/>\nadmin_listen_port : [7001]<br \/>\ndomain_path : [\/u01\/oracle\/user_projects\/domains\/base_domain]<br \/>\nproduction_mode : [prod]<br \/>\nadmin name : [AdminServer]<br \/>\nadministration_port_enabled : [true]<br \/>\nadministration_port : [9002]<\/code><\/p>\n<p>I noticed from the logs that the Administration channel is enabled and listening on HTTPS Port 9002. The URL to browse to the WebLogic Administration Console is then:<br \/>\n<code>https:\/\/192.168.99.100:9002\/console<\/code><br \/>\n<a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/wls12213_console_servers1.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-27283 size-large\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/wls12213_console_servers1.png\" alt=\"wls12213_console_servers1\" width=\"1024\" height=\"412\" \/><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>I was interested to run Docker on my Windows machine and found out the\u00a0Docker Toolbox for Windows that configure itself with the already installed VirtualBox at installation time. Once installed, You can start the Docker QuickStart shell preconfigured for a Docker command-line environment. At startup time it will start a VM named default and will [&hellip;]<\/p>\n","protected":false},"author":40,"featured_media":11584,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[197],"tags":[601,647],"type_dbi":[],"class_list":["post-11582","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-application-integration-middleware","tag-docker","tag-weblogic"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Deploy WebLogic docker images using Docker Toolbox and Virtual Box on Windows - dbi Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Deploy WebLogic docker images using Docker Toolbox and Virtual Box on Windows\" \/>\n<meta property=\"og:description\" content=\"I was interested to run Docker on my Windows machine and found out the\u00a0Docker Toolbox for Windows that configure itself with the already installed VirtualBox at installation time. Once installed, You can start the Docker QuickStart shell preconfigured for a Docker command-line environment. At startup time it will start a VM named default and will [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2018-08-28T05:16:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-10T15:32:25+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/wls12213_console_permissions.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1716\" \/>\n\t<meta property=\"og:image:height\" content=\"424\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Middleware Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Middleware Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/\"},\"author\":{\"name\":\"Middleware Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1\"},\"headline\":\"Deploy WebLogic docker images using Docker Toolbox and Virtual Box on Windows\",\"datePublished\":\"2018-08-28T05:16:19+00:00\",\"dateModified\":\"2024-09-10T15:32:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/\"},\"wordCount\":325,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/wls12213_console_permissions.png\",\"keywords\":[\"Docker\",\"WebLogic\"],\"articleSection\":[\"Application integration &amp; Middleware\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/\",\"name\":\"Deploy WebLogic docker images using Docker Toolbox and Virtual Box on Windows - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/wls12213_console_permissions.png\",\"datePublished\":\"2018-08-28T05:16:19+00:00\",\"dateModified\":\"2024-09-10T15:32:25+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/wls12213_console_permissions.png\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/wls12213_console_permissions.png\",\"width\":1716,\"height\":424},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Deploy WebLogic docker images using Docker Toolbox and Virtual Box on Windows\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1\",\"name\":\"Middleware Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g\",\"caption\":\"Middleware Team\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/middleware-team\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Deploy WebLogic docker images using Docker Toolbox and Virtual Box on Windows - dbi Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/","og_locale":"en_US","og_type":"article","og_title":"Deploy WebLogic docker images using Docker Toolbox and Virtual Box on Windows","og_description":"I was interested to run Docker on my Windows machine and found out the\u00a0Docker Toolbox for Windows that configure itself with the already installed VirtualBox at installation time. Once installed, You can start the Docker QuickStart shell preconfigured for a Docker command-line environment. At startup time it will start a VM named default and will [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/","og_site_name":"dbi Blog","article_published_time":"2018-08-28T05:16:19+00:00","article_modified_time":"2024-09-10T15:32:25+00:00","og_image":[{"width":1716,"height":424,"url":"http:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/wls12213_console_permissions.png","type":"image\/png"}],"author":"Middleware Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Middleware Team","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/"},"author":{"name":"Middleware Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1"},"headline":"Deploy WebLogic docker images using Docker Toolbox and Virtual Box on Windows","datePublished":"2018-08-28T05:16:19+00:00","dateModified":"2024-09-10T15:32:25+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/"},"wordCount":325,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/wls12213_console_permissions.png","keywords":["Docker","WebLogic"],"articleSection":["Application integration &amp; Middleware"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/","url":"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/","name":"Deploy WebLogic docker images using Docker Toolbox and Virtual Box on Windows - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/wls12213_console_permissions.png","datePublished":"2018-08-28T05:16:19+00:00","dateModified":"2024-09-10T15:32:25+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/wls12213_console_permissions.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/wls12213_console_permissions.png","width":1716,"height":424},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/deploy-weblogic-docker-images-using-docker-toolbox-virtual-box-windows\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Deploy WebLogic docker images using Docker Toolbox and Virtual Box on Windows"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1","name":"Middleware Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g","caption":"Middleware Team"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/middleware-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/11582","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/40"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=11582"}],"version-history":[{"count":1,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/11582\/revisions"}],"predecessor-version":[{"id":34695,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/11582\/revisions\/34695"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media\/11584"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=11582"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=11582"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=11582"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=11582"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}