{"id":1864,"date":"2023-05-05T01:04:25","date_gmt":"2023-05-04T16:04:25","guid":{"rendered":"https:\/\/bdsl.jbnu.ac.kr\/blog\/?p=1864"},"modified":"2023-05-05T01:12:04","modified_gmt":"2023-05-04T16:12:04","slug":"docker-installation","status":"publish","type":"post","link":"https:\/\/bdsl.jbnu.ac.kr\/blog\/docker-installation\/","title":{"rendered":"Docker &#8211; \uc124\uce58"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">\uc774 \ubb38\uc11c\ub294 docker \uacf5\uc2dd \uc2f8\uc774\ud2b8\ub97c \ucc38\uace0\ud574 \uc791\uc131\ud558\uc600\ub2e4 (<a href=\"https:\/\/docs.docker.com\/engine\/install\/ubuntu\/\">https:\/\/docs.docker.com\/engine\/install\/ubuntu\/<\/a>).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">(optional) \uc774\uc804 \ubc84\uc804 docker \uc9c0\uc6b0\uae30<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\uc624\ub798\ub41c docker engine\uc774 \uc788\ub294 \uacbd\uc6b0, \uc544\ub798 \uba85\ub839\uc744 \ud1b5\ud574 \uc0ad\uc81c\ud55c\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo apt-get remove docker docker-engine docker.io containerd runc\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">1. Installation <\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1.1. Set-up repository<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Docker engine\uc740 docker hub (repository)\uc744 \ud1b5\ud574 \ub2e4\ub978 \uac1c\ubc1c\uc790\uac00 \ub9cc\ub4e0 docker image\ub97c \ud65c\uc6a9\ud560 \uc218 \uc788\ub2e4. \uc774\ub97c \uc704\ud574 docker engine \uc124\uce58\uc5d0 \uc55e\uc11c, repository \uc811\uadfc \uc124\uc815\uc774 \ud544\uc694\ud558\ub2e4.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Install prerequisite packages for connection via https <\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo apt-get update\nsudo apt-get install \\\n    ca-certificates \\\n    curl \\\n    gnupg<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Add Docker&#8217;s official GPG key<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo install -m 0755 -d \/etc\/apt\/keyrings\ncurl -fsSL https:\/\/download.docker.com\/linux\/ubuntu\/gpg | sudo gpg --dearmor -o \/etc\/apt\/keyrings\/docker.gpg\nsudo chmod a+r \/etc\/apt\/keyrings\/docker.gpg\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Set-up docker repository<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\"> echo \\\n  \"deb [arch=\"$(dpkg --print-architecture)\" signed-by=\/etc\/apt\/keyrings\/docker.gpg] https:\/\/download.docker.com\/linux\/ubuntu \\\n  \"$(. \/etc\/os-release &amp;&amp; echo \"$VERSION_CODENAME\")\" stable\" | \\\n  sudo tee \/etc\/apt\/sources.list.d\/docker.list &gt; \/dev\/null\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1.2. Install Docker Engine <\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Install Docker Engine <\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Docker engine\uc740 apt-get\uc744 \uc774\uc6a9\ud574 \uc124\uce58\ud55c\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo apt-get update\nsudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">1.3. Test docker engine<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">\uc124\uce58 \ud655\uc778\uc744 \uc704\ud574 hello-world image\ub97c \uc2e4\ud589\uc2dc\ud0a8\ub2e4. &#8220;Hello from Docker!&#8221;\ub97c \ud3ec\ud568\ud55c \ubb38\uad6c\uac00 \ucd9c\ub825\ub418\uba74 docker engine\uc774 \uc131\uacf5\uc801\uc73c\ub85c \uc124\uce58\ub41c \uac83\uc774\ub2e4. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo docker run hello-world<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">2. Enable user to use docker <\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Docker\ub294 \uad00\ub9ac\uc790 \uad8c\ud55c(root)\uc73c\ub85c \uc791\ub3d9\ud55c\ub2e4. \ub530\ub77c\uc11c \uc77c\ubc18 \uc0ac\uc6a9\uc790\uac00 docker\ub97c \uc0ac\uc6a9\ud558\uae30 \uc704\ud574\uc11c\ub294 \uad8c\ud55c\uc744 \ubd80\uc5ec\ud574\uc57c \ud55c\ub2e4. <\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2.1. Create a docker group<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"python\" class=\"language-python\">sudo groupadd docker<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">2.2. Add user to the docker group<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"python\" class=\"language-python\">sudo usermod -aG docker $USER<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">2.3. Re-connect to the server<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">\uc0ac\uc6a9\uc790 \uad8c\ud55c \uc801\uc6a9\uc744 \uc704\ud574 log-out \ubc0f log-in\uc774 \ud544\uc694\ud558\ub2e4.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">(*) \uc774\ubbf8 \uac00\uc0c1 \uba38\uc2e0\uc5d0 \uc788\ub2e4\uba74, \uac00\uc0c1 \uba38\uc2e0\uc744 \ub2e4\uc2dc \uac00\ub3d9\uc2dc\ucf1c\uc57c group\uc774 \uc815\uc0c1\uc801\uc73c\ub85c \uc801\uc6a9\ub41c\ub2e4.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\uc774 \ubb38\uc11c\ub294 docker \uacf5\uc2dd \uc2f8\uc774\ud2b8\ub97c \ucc38\uace0\ud574 \uc791\uc131\ud558\uc600\ub2e4 (https:\/\/docs.docker.com\/engine\/install\/ubuntu\/). (optional) \uc774\uc804 \ubc84\uc804 docker \uc9c0\uc6b0\uae30 \uc624\ub798\ub41c docker engine\uc774 \uc788\ub294 \uacbd\uc6b0, \uc544\ub798 \uba85\ub839\uc744 \ud1b5\ud574 \uc0ad\uc81c\ud55c\ub2e4. 1. Installation 1.1. Set-up repository Docker engine\uc740 docker hub (repository)\uc744 \ud1b5\ud574 \ub2e4\ub978 \uac1c\ubc1c\uc790\uac00 \ub9cc\ub4e0 docker image\ub97c \ud65c\uc6a9\ud560 \uc218 \uc788\ub2e4. \uc774\ub97c \uc704\ud574 docker engine \uc124\uce58\uc5d0 \uc55e\uc11c, repository \uc811\uadfc \uc124\uc815\uc774 \ud544\uc694\ud558\ub2e4. Install prerequisite packages for [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_uag_custom_page_level_css":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":"","_members_access_role":[],"_members_access_error":""},"categories":[25,35,1],"tags":[],"class_list":["post-1864","post","type-post","status-publish","format-standard","hentry","category-data-science","category-data-science-bdsl","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Docker - \uc124\uce58 - Biomedical Data Science Laboratory<\/title>\n<meta name=\"description\" content=\"Docker\ub294 \ud504\ub85c\uadf8\ub7a8\uc758 \uc124\uce58\uc640 \ubc30\ud3ec\ub97c \uc27d\uac8c \ub3c4\uc640\uc8fc\ub294 \ud50c\ub7ab\ud3fc\uc774\ub2e4. \uc774 \ubb38\uc11c\ub294 docker \uc124\uce58 \ubc29\ubc95\uc744 \uc124\uba85\ud55c\ub2e4.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/bdsl.jbnu.ac.kr\/blog\/docker-installation\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Docker - \uc124\uce58 - Biomedical Data Science Laboratory\" \/>\n<meta property=\"og:description\" content=\"Docker\ub294 \ud504\ub85c\uadf8\ub7a8\uc758 \uc124\uce58\uc640 \ubc30\ud3ec\ub97c \uc27d\uac8c \ub3c4\uc640\uc8fc\ub294 \ud50c\ub7ab\ud3fc\uc774\ub2e4. \uc774 \ubb38\uc11c\ub294 docker \uc124\uce58 \ubc29\ubc95\uc744 \uc124\uba85\ud55c\ub2e4.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bdsl.jbnu.ac.kr\/blog\/docker-installation\/\" \/>\n<meta property=\"og:site_name\" content=\"Biomedical Data Science Laboratory\" \/>\n<meta property=\"article:published_time\" content=\"2023-05-04T16:04:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-05-04T16:12:04+00:00\" \/>\n<meta name=\"author\" content=\"sphong\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"sphong\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/docker-installation\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/docker-installation\\\/\"},\"author\":{\"name\":\"sphong\",\"@id\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/#\\\/schema\\\/person\\\/8d22f775fcc218b1184ec0d890034e9b\"},\"headline\":\"Docker &#8211; \uc124\uce58\",\"datePublished\":\"2023-05-04T16:04:25+00:00\",\"dateModified\":\"2023-05-04T16:12:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/docker-installation\\\/\"},\"wordCount\":87,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/#organization\"},\"articleSection\":[\"Data Science\",\"Data Science (BDSL)\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/docker-installation\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/docker-installation\\\/\",\"url\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/docker-installation\\\/\",\"name\":\"Docker - \uc124\uce58 - Biomedical Data Science Laboratory\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/#website\"},\"datePublished\":\"2023-05-04T16:04:25+00:00\",\"dateModified\":\"2023-05-04T16:12:04+00:00\",\"description\":\"Docker\ub294 \ud504\ub85c\uadf8\ub7a8\uc758 \uc124\uce58\uc640 \ubc30\ud3ec\ub97c \uc27d\uac8c \ub3c4\uc640\uc8fc\ub294 \ud50c\ub7ab\ud3fc\uc774\ub2e4. \uc774 \ubb38\uc11c\ub294 docker \uc124\uce58 \ubc29\ubc95\uc744 \uc124\uba85\ud55c\ub2e4.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/docker-installation\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/docker-installation\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/docker-installation\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Docker &#8211; \uc124\uce58\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/\",\"name\":\"Biomedical Data Science Laboratory\",\"description\":\"Home page for Biomedical Data Science Laboratory.\",\"publisher\":{\"@id\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/#organization\",\"name\":\"Biomedical Data Science Laboratory\",\"url\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/11\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/11\\\/logo.png\",\"width\":1792,\"height\":638,\"caption\":\"Biomedical Data Science Laboratory\"},\"image\":{\"@id\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/#\\\/schema\\\/person\\\/8d22f775fcc218b1184ec0d890034e9b\",\"name\":\"sphong\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/04\\\/cropped-\uc99d\uba85\uc0ac\uc9c4-96x96.jpg\",\"url\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/04\\\/cropped-\uc99d\uba85\uc0ac\uc9c4-96x96.jpg\",\"contentUrl\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/04\\\/cropped-\uc99d\uba85\uc0ac\uc9c4-96x96.jpg\",\"caption\":\"sphong\"},\"description\":\"Assistant professor Department of Molecular Biology Jeonbuk National University\",\"sameAs\":[\"https:\\\/\\\/bdsl.jbnu.ac.kr\"],\"url\":\"https:\\\/\\\/bdsl.jbnu.ac.kr\\\/blog\\\/author\\\/sphong\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Docker - \uc124\uce58 - Biomedical Data Science Laboratory","description":"Docker\ub294 \ud504\ub85c\uadf8\ub7a8\uc758 \uc124\uce58\uc640 \ubc30\ud3ec\ub97c \uc27d\uac8c \ub3c4\uc640\uc8fc\ub294 \ud50c\ub7ab\ud3fc\uc774\ub2e4. \uc774 \ubb38\uc11c\ub294 docker \uc124\uce58 \ubc29\ubc95\uc744 \uc124\uba85\ud55c\ub2e4.","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:\/\/bdsl.jbnu.ac.kr\/blog\/docker-installation\/","og_locale":"en_US","og_type":"article","og_title":"Docker - \uc124\uce58 - Biomedical Data Science Laboratory","og_description":"Docker\ub294 \ud504\ub85c\uadf8\ub7a8\uc758 \uc124\uce58\uc640 \ubc30\ud3ec\ub97c \uc27d\uac8c \ub3c4\uc640\uc8fc\ub294 \ud50c\ub7ab\ud3fc\uc774\ub2e4. \uc774 \ubb38\uc11c\ub294 docker \uc124\uce58 \ubc29\ubc95\uc744 \uc124\uba85\ud55c\ub2e4.","og_url":"https:\/\/bdsl.jbnu.ac.kr\/blog\/docker-installation\/","og_site_name":"Biomedical Data Science Laboratory","article_published_time":"2023-05-04T16:04:25+00:00","article_modified_time":"2023-05-04T16:12:04+00:00","author":"sphong","twitter_card":"summary_large_image","twitter_misc":{"Written by":"sphong","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/bdsl.jbnu.ac.kr\/blog\/docker-installation\/#article","isPartOf":{"@id":"https:\/\/bdsl.jbnu.ac.kr\/blog\/docker-installation\/"},"author":{"name":"sphong","@id":"https:\/\/bdsl.jbnu.ac.kr\/blog\/#\/schema\/person\/8d22f775fcc218b1184ec0d890034e9b"},"headline":"Docker &#8211; \uc124\uce58","datePublished":"2023-05-04T16:04:25+00:00","dateModified":"2023-05-04T16:12:04+00:00","mainEntityOfPage":{"@id":"https:\/\/bdsl.jbnu.ac.kr\/blog\/docker-installation\/"},"wordCount":87,"commentCount":0,"publisher":{"@id":"https:\/\/bdsl.jbnu.ac.kr\/blog\/#organization"},"articleSection":["Data Science","Data Science (BDSL)"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/bdsl.jbnu.ac.kr\/blog\/docker-installation\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/bdsl.jbnu.ac.kr\/blog\/docker-installation\/","url":"https:\/\/bdsl.jbnu.ac.kr\/blog\/docker-installation\/","name":"Docker - \uc124\uce58 - Biomedical Data Science Laboratory","isPartOf":{"@id":"https:\/\/bdsl.jbnu.ac.kr\/blog\/#website"},"datePublished":"2023-05-04T16:04:25+00:00","dateModified":"2023-05-04T16:12:04+00:00","description":"Docker\ub294 \ud504\ub85c\uadf8\ub7a8\uc758 \uc124\uce58\uc640 \ubc30\ud3ec\ub97c \uc27d\uac8c \ub3c4\uc640\uc8fc\ub294 \ud50c\ub7ab\ud3fc\uc774\ub2e4. \uc774 \ubb38\uc11c\ub294 docker \uc124\uce58 \ubc29\ubc95\uc744 \uc124\uba85\ud55c\ub2e4.","breadcrumb":{"@id":"https:\/\/bdsl.jbnu.ac.kr\/blog\/docker-installation\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bdsl.jbnu.ac.kr\/blog\/docker-installation\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/bdsl.jbnu.ac.kr\/blog\/docker-installation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bdsl.jbnu.ac.kr\/blog\/"},{"@type":"ListItem","position":2,"name":"Docker &#8211; \uc124\uce58"}]},{"@type":"WebSite","@id":"https:\/\/bdsl.jbnu.ac.kr\/blog\/#website","url":"https:\/\/bdsl.jbnu.ac.kr\/blog\/","name":"Biomedical Data Science Laboratory","description":"Home page for Biomedical Data Science Laboratory.","publisher":{"@id":"https:\/\/bdsl.jbnu.ac.kr\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/bdsl.jbnu.ac.kr\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/bdsl.jbnu.ac.kr\/blog\/#organization","name":"Biomedical Data Science Laboratory","url":"https:\/\/bdsl.jbnu.ac.kr\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bdsl.jbnu.ac.kr\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/bdsl.jbnu.ac.kr\/blog\/wp-content\/uploads\/2022\/11\/logo.png","contentUrl":"https:\/\/bdsl.jbnu.ac.kr\/blog\/wp-content\/uploads\/2022\/11\/logo.png","width":1792,"height":638,"caption":"Biomedical Data Science Laboratory"},"image":{"@id":"https:\/\/bdsl.jbnu.ac.kr\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/bdsl.jbnu.ac.kr\/blog\/#\/schema\/person\/8d22f775fcc218b1184ec0d890034e9b","name":"sphong","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bdsl.jbnu.ac.kr\/blog\/wp-content\/uploads\/2022\/04\/cropped-\uc99d\uba85\uc0ac\uc9c4-96x96.jpg","url":"https:\/\/bdsl.jbnu.ac.kr\/blog\/wp-content\/uploads\/2022\/04\/cropped-\uc99d\uba85\uc0ac\uc9c4-96x96.jpg","contentUrl":"https:\/\/bdsl.jbnu.ac.kr\/blog\/wp-content\/uploads\/2022\/04\/cropped-\uc99d\uba85\uc0ac\uc9c4-96x96.jpg","caption":"sphong"},"description":"Assistant professor Department of Molecular Biology Jeonbuk National University","sameAs":["https:\/\/bdsl.jbnu.ac.kr"],"url":"https:\/\/bdsl.jbnu.ac.kr\/blog\/author\/sphong\/"}]}},"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false},"uagb_author_info":{"display_name":"sphong","author_link":"https:\/\/bdsl.jbnu.ac.kr\/blog\/author\/sphong\/"},"uagb_comment_info":0,"uagb_excerpt":"\uc774 \ubb38\uc11c\ub294 docker \uacf5\uc2dd \uc2f8\uc774\ud2b8\ub97c \ucc38\uace0\ud574 \uc791\uc131\ud558\uc600\ub2e4 (https:\/\/docs.docker.com\/engine\/install\/ubuntu\/). (optional) \uc774\uc804 \ubc84\uc804 docker \uc9c0\uc6b0\uae30 \uc624\ub798\ub41c docker engine\uc774 \uc788\ub294 \uacbd\uc6b0, \uc544\ub798 \uba85\ub839\uc744 \ud1b5\ud574 \uc0ad\uc81c\ud55c\ub2e4. 1. Installation 1.1. Set-up repository Docker engine\uc740 docker hub (repository)\uc744 \ud1b5\ud574 \ub2e4\ub978 \uac1c\ubc1c\uc790\uac00 \ub9cc\ub4e0 docker image\ub97c \ud65c\uc6a9\ud560 \uc218 \uc788\ub2e4. \uc774\ub97c \uc704\ud574 docker engine \uc124\uce58\uc5d0 \uc55e\uc11c, repository \uc811\uadfc \uc124\uc815\uc774 \ud544\uc694\ud558\ub2e4. Install prerequisite packages for&hellip;","_links":{"self":[{"href":"https:\/\/bdsl.jbnu.ac.kr\/blog\/wp-json\/wp\/v2\/posts\/1864","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bdsl.jbnu.ac.kr\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/bdsl.jbnu.ac.kr\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/bdsl.jbnu.ac.kr\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/bdsl.jbnu.ac.kr\/blog\/wp-json\/wp\/v2\/comments?post=1864"}],"version-history":[{"count":1,"href":"https:\/\/bdsl.jbnu.ac.kr\/blog\/wp-json\/wp\/v2\/posts\/1864\/revisions"}],"predecessor-version":[{"id":1865,"href":"https:\/\/bdsl.jbnu.ac.kr\/blog\/wp-json\/wp\/v2\/posts\/1864\/revisions\/1865"}],"wp:attachment":[{"href":"https:\/\/bdsl.jbnu.ac.kr\/blog\/wp-json\/wp\/v2\/media?parent=1864"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bdsl.jbnu.ac.kr\/blog\/wp-json\/wp\/v2\/categories?post=1864"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bdsl.jbnu.ac.kr\/blog\/wp-json\/wp\/v2\/tags?post=1864"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}