{"id":9372,"date":"2018-08-30T13:37:33","date_gmt":"2018-08-30T04:37:33","guid":{"rendered":"http:\/\/apollo89.com\/wordpress\/?p=9372"},"modified":"2025-03-05T20:10:14","modified_gmt":"2025-03-05T11:10:14","slug":"docker-db-%ed%99%9c%ec%9a%a9","status":"publish","type":"post","link":"https:\/\/apollo89.com\/wordpress\/?p=9372","title":{"rendered":"docker db \ud65c\uc6a9"},"content":{"rendered":"<p><center><\/p>\n<p style=\"text-align: center; color: blue;\">&#8220;\uc774 \ud3ec\uc2a4\ud305\uc740 \ucfe0\ud321 \ud30c\ud2b8\ub108\uc2a4 \ud65c\ub3d9\uc758 \uc77c\ud658\uc73c\ub85c, \uc774\uc5d0 \ub530\ub978 \uc77c\uc815\uc561\uc758 \uc218\uc218\ub8cc\ub97c \uc81c\uacf5\ubc1b\uc2b5\ub2c8\ub2e4.&#8221;<\/p>\n<p><iframe loading=\"lazy\" src=\"https:\/\/coupa.ng\/chlPFq\" width=\"120\" height=\"240\" frameborder=\"0\" scrolling=\"no\"><\/iframe> <iframe loading=\"lazy\" src=\"https:\/\/coupa.ng\/chlPFQ\" width=\"120\" height=\"240\" frameborder=\"0\" scrolling=\"no\"><\/iframe> <iframe loading=\"lazy\" src=\"https:\/\/coupa.ng\/chlPGg\" width=\"120\" height=\"240\" frameborder=\"0\" scrolling=\"no\"><\/iframe> <iframe loading=\"lazy\" src=\"https:\/\/coupa.ng\/chlPGD\" width=\"120\" height=\"240\" frameborder=\"0\" scrolling=\"no\"><\/iframe> <iframe loading=\"lazy\" src=\"https:\/\/coupa.ng\/chlPHE\" width=\"120\" height=\"240\" frameborder=\"0\" scrolling=\"no\"><\/iframe><br \/><\/center><\/p>\n<p>docker db \ud65c\uc6a9<\/p>\n<p>1. docker \uc124\uce58<br \/>\n<a href=\"https:\/\/www.docker.com\/\">https:\/\/www.docker.com\/<\/a><\/p>\n<p>2. db \uc774\ubbf8\uc9c0 \ub2e4\uc6b4\ub85c\ub4dc<br \/>\ndocker pull postgres<br \/>\ndocker pull mariadb<br \/>\ndocker pull mysql<br \/>\ndocker pull sath89\/oracle-xe-11g<\/p>\n<p>3. \ub2e4\uc6b4 \ubc1b\uc740 \uc774\ubbf8\uc9c0 \ud655\uc778<br \/>\n$ docker images<br \/>\nREPOSITORY TAG IMAGE ID CREATED SIZE<br \/>\npostgres latest 45e33d1af449 7 days ago 228MB<br \/>\nmariadb latest 520fc647a087 8 weeks ago 403MB<br \/>\nubuntu latest c9d990395902 4 months ago 113MB<br \/>\nmysql latest 5195076672a7 5 months ago 371MB<br \/>\nsath89\/oracle-xe-11g latest 04851454491b 13 months ago 792MB<br \/>\n$<\/p>\n<p>4. mysql \uc811\uc18d\ud658\uacbd \uad6c\uc131<br \/>\n# \ucee8\ud14c\uc774\ub108 \uc0dd\uc131<br \/>\n$ docker run -d &#8211;name MYSQL_DB -p 3306:3306 -e MYSQL_ROOT_PASSWORD=1234 mysql<br \/>\n305bd69c592ef5e2e0ca9e3e704cdb5b72e7b673e25760576101348afe4efe08<\/p>\n<p># \ucee8\ud14c\uc774\ub108 \uc258\uc811\uc18d<br \/>\n$ docker exec -it MYSQL_DB \/bin\/bash<br \/>\nroot@305bd69c592e:\/#<\/p>\n<p># \uc811\uc18d<br \/>\nroot@305bd69c592e:\/# mysql -u root -p<br \/>\nEnter password:<br \/>\nWelcome to the MySQL monitor. Commands end with ; or \\g.<br \/>\nYour MySQL connection id is 2<br \/>\nServer version: 5.7.21 MySQL Community Server (GPL)<\/p>\n<p>Copyright (c) 2000, 2018, Oracle and\/or its affiliates. All rights reserved.<\/p>\n<p>Oracle is a registered trademark of Oracle Corporation and\/or its<br \/>\naffiliates. Other names may be trademarks of their respective<br \/>\nowners.<\/p>\n<p>Type &#8216;help;&#8217; or &#8216;\\h&#8217; for help. Type &#8216;\\c&#8217; to clear the current input statement.<\/p>\n<p>mysql&gt;<\/p>\n<p>5. mariaDB \uc811\uc18d\ud658\uacbd \uad6c\uc131<br \/>\n# \ucee8\ud14c\uc774\ub108 \uc0dd\uc131<br \/>\n$ docker run -d &#8211;name MARIADB_DB -p 3306:3306 -e MYSQL_ROOT_PASSWORD=1234 mariadb<br \/>\n3a31714f6f7322c665a78dedf3c20f9b58971bd0a3512411f151876eab5b326c<\/p>\n<p># \ucee8\ud14c\uc774\ub108 \uc258\uc811\uc18d<br \/>\n$ docker exec -it MARIADB_DB \/bin\/bash<br \/>\nroot@3a31714f6f73:\/#<\/p>\n<p># \uc811\uc18d<br \/>\nroot@3a31714f6f73:\/# mysql -u root -p<br \/>\nEnter password:<br \/>\nWelcome to the MariaDB monitor. Commands end with ; or \\g.<br \/>\nYour MariaDB connection id is 9<br \/>\nServer version: 10.3.8-MariaDB-1:10.3.8+maria~jessie mariadb.org binary distribution<\/p>\n<p>Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.<\/p>\n<p>Type &#8216;help;&#8217; or &#8216;\\h&#8217; for help. Type &#8216;\\c&#8217; to clear the current input statement.<\/p>\n<p>MariaDB [(none)]&gt;<\/p>\n<p>6. postgres<br \/>\n# \ucee8\ud14c\uc774\ub108 \uc0dd\uc131<br \/>\n$ docker run &#8211;name POSTGRES_DB -e POSTGRES_PASSWORD=1234 -p 5432:5432 -d postgres<br \/>\n62ffaaa4fee3ac639f7e9a6eb3058aa2034959ae2d8b609063645f4a1f116cac<\/p>\n<p># \ucee8\ud14c\uc774\ub108 \uc258\uc811\uc18d<br \/>\n$ docker exec -it POSTGRES_DB \/bin\/bash<br \/>\nroot@62ffaaa4fee3:\/#<\/p>\n<p># \uc811\uc18d<br \/>\nroot@62ffaaa4fee3:\/# psql &#8211;host=127.0.0.1 &#8211;port=5432 &#8211;username=postgres<br \/>\npsql (10.5 (Debian 10.5-1.pgdg90+1))<br \/>\nType &#8220;help&#8221; for help.<\/p>\n<p>postgres=#<\/p>\n<p>7. oracle<br \/>\n# \ucee8\ud14c\uc774\ub108 \uc0dd\uc131<br \/>\n$ docker run &#8211;name ORACLE_XE_11G_DB -e ORACLE_ALLOW_REMOTE=true -p 8080:8080 -p 1521:1521 -d sath89\/oracle-xe-11g<br \/>\nba9d640beda40ac80742fd143a25c7442f581d711344a80dcb592a798a249644<\/p>\n<p># \ucee8\ud14c\uc774\ub108 \uc258\uc811\uc18d<br \/>\n$ docker exec -it ORACLE_XE_11G_DB \/bin\/bash<br \/>\nroot@ba9d640beda4:\/#<\/p>\n<p># \uc811\uc18d<br \/>\nroot@ba9d640beda4:\/# sqlplus<\/p>\n<p>SQL*Plus: Release 11.2.0.2.0 Production on Thu Aug 30 04:29:27 2018<\/p>\n<p>Copyright (c) 1982, 2011, Oracle. All rights reserved.<\/p>\n<p>Enter user-name: system<br \/>\nEnter password:<\/p>\n<p>Connected to:<br \/>\nOracle Database 11g Express Edition Release 11.2.0.2.0 &#8211; 64bit Production<\/p>\n<p>SQL&gt;<\/p>\n<p>8. \uc124\uce58\ub41c \ucee8\ud14c\uc774\ub108 \ud655\uc778<br \/>\n$ docker ps -a<br \/>\nCONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES<br \/>\nba9d640beda4 sath89\/oracle-xe-11g &#8220;\/entrypoint.sh &#8221; 21 minutes ago Up 2 minutes 0.0.0.0:1521-&gt;1521\/tcp, 0.0.0.0:8080-&gt;8080\/tcp ORACLE_XE_11G_DB<br \/>\n62ffaaa4fee3 postgres &#8220;docker-entrypoint.s\u2026&#8221; 2 hours ago Up 5 minutes 0.0.0.0:5432-&gt;5432\/tcp POSTGRES_DB<br \/>\n3a31714f6f73 mariadb &#8220;docker-entrypoint.s\u2026&#8221; 2 hours ago Exited (137) 16 minutes ago MARIADB_DB<br \/>\n305bd69c592e mysql &#8220;docker-entrypoint.s\u2026&#8221; 2 hours ago Up 1 second 0.0.0.0:3306-&gt;3306\/tcp MYSQL_DB<\/p>\n<p>9. \ucee8\ud14c\uc774\ub108 \uc2e4\ud589 \uc911\uc9c0<\/p>\n<p>$ docker kill 305bd69c592e<br \/>\n305bd69c592e<\/p>\n<p>$ docker ps -a<br \/>\nCONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES<br \/>\nba9d640beda4 sath89\/oracle-xe-11g &#8220;\/entrypoint.sh &#8221; 22 minutes ago Up 3 minutes 0.0.0.0:1521-&gt;1521\/tcp, 0.0.0.0:8080-&gt;8080\/tcp ORACLE_XE_11G_DB<br \/>\n62ffaaa4fee3 postgres &#8220;docker-entrypoint.s\u2026&#8221; 2 hours ago Up 7 minutes 0.0.0.0:5432-&gt;5432\/tcp POSTGRES_DB<br \/>\n3a31714f6f73 mariadb &#8220;docker-entrypoint.s\u2026&#8221; 2 hours ago Exited (137) 18 minutes ago MARIADB_DB<br \/>\n305bd69c592e mysql &#8220;docker-entrypoint.s\u2026&#8221; 2 hours ago Exited (137) 34 seconds ago MYSQL_DB<br \/>\n$<\/p>\n<p>10. \ucee8\ud14c\uc774\ub108 \ub2e4\uc2dc \uc2dc\uc791<br \/>\n$ docker start MARIADB_DB<br \/>\nMARIADB_DB<br \/>\n$ docker ps -a<br \/>\n\\CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES<br \/>\nba9d640beda4 sath89\/oracle-xe-11g &#8220;\/entrypoint.sh &#8221; 22 minutes ago Up 4 minutes 0.0.0.0:1521-&gt;1521\/tcp, 0.0.0.0:8080-&gt;8080\/tcp ORACLE_XE_11G_DB<br \/>\n62ffaaa4fee3 postgres &#8220;docker-entrypoint.s\u2026&#8221; 2 hours ago Up 7 minutes 0.0.0.0:5432-&gt;5432\/tcp POSTGRES_DB<br \/>\n3a31714f6f73 mariadb &#8220;docker-entrypoint.s\u2026&#8221; 2 hours ago Up 14 seconds 0.0.0.0:3306-&gt;3306\/tcp MARIADB_DB<br \/>\n305bd69c592e mysql &#8220;docker-entrypoint.s\u2026&#8221; 2 hours ago Exited (137) About a minute ago MYSQL_DB<br \/>\n$<\/p>\n<p>11. \ucee8\ud14c\uc774\ub108 \uc0ad\uc81c.<br \/>\n$ docker rm 305bd69c592e<br \/>\n305bd69c592e<br \/>\n$ docker ps -a<br \/>\nCONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES<br \/>\nba9d640beda4 sath89\/oracle-xe-11g &#8220;\/entrypoint.sh &#8221; 23 minutes ago Up 4 minutes 0.0.0.0:1521-&gt;1521\/tcp, 0.0.0.0:8080-&gt;8080\/tcp ORACLE_XE_11G_DB<br \/>\n62ffaaa4fee3 postgres &#8220;docker-entrypoint.s\u2026&#8221; 2 hours ago Up 8 minutes 0.0.0.0:5432-&gt;5432\/tcp POSTGRES_DB<br \/>\n3a31714f6f73 mariadb &#8220;docker-entrypoint.s\u2026&#8221; 2 hours ago Up About a minute 0.0.0.0:3306-&gt;3306\/tcp MARIADB_DB<br \/>\n$<\/p>\n<p>12. \uc774\ubbf8\uc9c0 \uc0ad\uc81c<\/p>\n<p>$ docker images<br \/>\nREPOSITORY TAG IMAGE ID CREATED SIZE<br \/>\npostgres latest 45e33d1af449 7 days ago 228MB<br \/>\nmariadb latest 520fc647a087 8 weeks ago 403MB<br \/>\nubuntu latest c9d990395902 4 months ago 113MB<br \/>\nnode latest aa3e171e4e95 4 months ago 673MB<br \/>\nmysql latest 5195076672a7 5 months ago 371MB<br \/>\nkalilinux\/kali-linux-docker latest b8fe82f15421 6 months ago 749MB<br \/>\nsath89\/oracle-xe-11g latest 04851454491b 13 months ago 792MB<br \/>\n$<br \/>\n$ docker rmi 5195076672a7<br \/>\nUntagged: mysql:latest<br \/>\nUntagged: mysql@sha256:691c55aabb3c4e3b89b953dd2f022f7ea845e5443954767d321d5f5fa394e28c<br \/>\nDeleted: sha256:5195076672a7e30525705a18f7d352c920bbd07a5ae72b30e374081fe660a011<br \/>\nDeleted: sha256:bc52f6d08bc65c22baab4384ae534d4c5ba8c988197de49975e0a0f78310dd89<br \/>\nDeleted: sha256:b2590548a0917767b420cf20d0cef3aae8912314de216f624c0840f3ad827aa7<br \/>\nDeleted: sha256:756d63a7d5896b52d445ea84ee392cb08a7c119322cfcdfed6303de1ed0d0eab<br \/>\nDeleted: sha256:8e4736576db75536185beba95c5877deeb3915740688cbbc17fe04aed3632282<br \/>\nDeleted: sha256:e6e6e1bb8a16eadbe6628770767615fbc8d67bf11dde69a902116efe847baa7e<br \/>\nDeleted: sha256:080b6c4ec1d55d91a7087e12ae3bd4df252148d94f9911209e0a83d50dc63784<br \/>\nDeleted: sha256:58b97da9f98f75af01ae59c3cb1fdd07a07297015459f3f9f88b140699b29147<br \/>\nDeleted: sha256:3918448e7fe95f36f67a55c938559bab787249b8fa5c7e9914afd46994d045b0<br \/>\nDeleted: sha256:fac8373d1ec4f5bb6c13f12170f558edc3cfbfe8215ae3d1c869940401bc14cf<br \/>\nDeleted: sha256:130f3e567e288fdbbc3ae7cd7aa6c8b3d952bebd3eae58f0a7da93acbb22a258<br \/>\nDeleted: sha256:3358360aedad76edf49d0022818228d959d20a4cccc55d01c32f8b62e226e2c2<br \/>\n$ docker images<br \/>\nREPOSITORY TAG IMAGE ID CREATED SIZE<br \/>\npostgres latest 45e33d1af449 7 days ago 228MB<br \/>\nmariadb latest 520fc647a087 8 weeks ago 403MB<br \/>\nubuntu latest c9d990395902 4 months ago 113MB<br \/>\nnode latest aa3e171e4e95 4 months ago 673MB<br \/>\nkalilinux\/kali-linux-docker latest b8fe82f15421 6 months ago 749MB<br \/>\nsath89\/oracle-xe-11g latest 04851454491b 13 months ago 792MB<br \/>\n$<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&#8220;\uc774 \ud3ec\uc2a4\ud305\uc740 \ucfe0\ud321 \ud30c\ud2b8\ub108\uc2a4 \ud65c\ub3d9\uc758 \uc77c\ud658\uc73c\ub85c, \uc774\uc5d0 \ub530\ub978 \uc77c\uc815\uc561\uc758 \uc218\uc218\ub8cc\ub97c \uc81c\uacf5\ubc1b\uc2b5\ub2c8\ub2e4.&#8221; docker db \ud65c\uc6a9 1. docker \uc124\uce58 https:\/\/www.docker.com\/ 2. db \uc774\ubbf8\uc9c0 \ub2e4\uc6b4\ub85c\ub4dc docker pull postgres docker pull mariadb docker pull mysql docker pull sath89\/oracle-xe-11g 3. \ub2e4\uc6b4 \ubc1b\uc740 \uc774\ubbf8\uc9c0 \ud655\uc778 $ &hellip; <a href=\"https:\/\/apollo89.com\/wordpress\/?p=9372\">Continue reading <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[685],"tags":[],"class_list":["post-9372","post","type-post","status-publish","format-standard","hentry","category-database-"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>docker db \ud65c\uc6a9 - Apollo89.com<\/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:\/\/apollo89.com\/wordpress\/?p=9372\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"docker db \ud65c\uc6a9 - Apollo89.com\" \/>\n<meta property=\"og:description\" content=\"&#8220;\uc774 \ud3ec\uc2a4\ud305\uc740 \ucfe0\ud321 \ud30c\ud2b8\ub108\uc2a4 \ud65c\ub3d9\uc758 \uc77c\ud658\uc73c\ub85c, \uc774\uc5d0 \ub530\ub978 \uc77c\uc815\uc561\uc758 \uc218\uc218\ub8cc\ub97c \uc81c\uacf5\ubc1b\uc2b5\ub2c8\ub2e4.&#8221; docker db \ud65c\uc6a9 1. docker \uc124\uce58 https:\/\/www.docker.com\/ 2. db \uc774\ubbf8\uc9c0 \ub2e4\uc6b4\ub85c\ub4dc docker pull postgres docker pull mariadb docker pull mysql docker pull sath89\/oracle-xe-11g 3. \ub2e4\uc6b4 \ubc1b\uc740 \uc774\ubbf8\uc9c0 \ud655\uc778 $ &hellip; Continue reading &rarr;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/apollo89.com\/wordpress\/?p=9372\" \/>\n<meta property=\"og:site_name\" content=\"Apollo89.com\" \/>\n<meta property=\"article:published_time\" content=\"2018-08-30T04:37:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-05T11:10:14+00:00\" \/>\n<meta name=\"author\" content=\"apollo89\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"apollo89\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"5\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=9372#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=9372\"},\"author\":{\"name\":\"apollo89\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/93f56825cac3b2f18e5f107995066c82\"},\"headline\":\"docker db \ud65c\uc6a9\",\"datePublished\":\"2018-08-30T04:37:33+00:00\",\"dateModified\":\"2025-03-05T11:10:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=9372\"},\"wordCount\":1067,\"commentCount\":0,\"articleSection\":[\"Database\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=9372#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=9372\",\"url\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=9372\",\"name\":\"docker db \ud65c\uc6a9 - Apollo89.com\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#website\"},\"datePublished\":\"2018-08-30T04:37:33+00:00\",\"dateModified\":\"2025-03-05T11:10:14+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/93f56825cac3b2f18e5f107995066c82\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=9372#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=9372\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=9372#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\\\/\\\/apollo89.com\\\/wordpress\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"docker db \ud65c\uc6a9\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#website\",\"url\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/\",\"name\":\"Apollo89.com\",\"description\":\"\uc544\ud3f4\ub85c\uc528\uc758 \uc7a1\ub2e4\ud55c \uacbd\ud5d8\ub4e4..\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/93f56825cac3b2f18e5f107995066c82\",\"name\":\"apollo89\",\"description\":\"\uc544\ud3f4\ub85c89 \uc785\ub2c8\ub2e4.\",\"url\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"docker db \ud65c\uc6a9 - Apollo89.com","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:\/\/apollo89.com\/wordpress\/?p=9372","og_locale":"ko_KR","og_type":"article","og_title":"docker db \ud65c\uc6a9 - Apollo89.com","og_description":"&#8220;\uc774 \ud3ec\uc2a4\ud305\uc740 \ucfe0\ud321 \ud30c\ud2b8\ub108\uc2a4 \ud65c\ub3d9\uc758 \uc77c\ud658\uc73c\ub85c, \uc774\uc5d0 \ub530\ub978 \uc77c\uc815\uc561\uc758 \uc218\uc218\ub8cc\ub97c \uc81c\uacf5\ubc1b\uc2b5\ub2c8\ub2e4.&#8221; docker db \ud65c\uc6a9 1. docker \uc124\uce58 https:\/\/www.docker.com\/ 2. db \uc774\ubbf8\uc9c0 \ub2e4\uc6b4\ub85c\ub4dc docker pull postgres docker pull mariadb docker pull mysql docker pull sath89\/oracle-xe-11g 3. \ub2e4\uc6b4 \ubc1b\uc740 \uc774\ubbf8\uc9c0 \ud655\uc778 $ &hellip; Continue reading &rarr;","og_url":"https:\/\/apollo89.com\/wordpress\/?p=9372","og_site_name":"Apollo89.com","article_published_time":"2018-08-30T04:37:33+00:00","article_modified_time":"2025-03-05T11:10:14+00:00","author":"apollo89","twitter_card":"summary_large_image","twitter_misc":{"\uae00\uc4f4\uc774":"apollo89","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"5\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/apollo89.com\/wordpress\/?p=9372#article","isPartOf":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=9372"},"author":{"name":"apollo89","@id":"https:\/\/apollo89.com\/wordpress\/#\/schema\/person\/93f56825cac3b2f18e5f107995066c82"},"headline":"docker db \ud65c\uc6a9","datePublished":"2018-08-30T04:37:33+00:00","dateModified":"2025-03-05T11:10:14+00:00","mainEntityOfPage":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=9372"},"wordCount":1067,"commentCount":0,"articleSection":["Database"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/apollo89.com\/wordpress\/?p=9372#respond"]}]},{"@type":"WebPage","@id":"https:\/\/apollo89.com\/wordpress\/?p=9372","url":"https:\/\/apollo89.com\/wordpress\/?p=9372","name":"docker db \ud65c\uc6a9 - Apollo89.com","isPartOf":{"@id":"https:\/\/apollo89.com\/wordpress\/#website"},"datePublished":"2018-08-30T04:37:33+00:00","dateModified":"2025-03-05T11:10:14+00:00","author":{"@id":"https:\/\/apollo89.com\/wordpress\/#\/schema\/person\/93f56825cac3b2f18e5f107995066c82"},"breadcrumb":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=9372#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/apollo89.com\/wordpress\/?p=9372"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/apollo89.com\/wordpress\/?p=9372#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/apollo89.com\/wordpress"},{"@type":"ListItem","position":2,"name":"docker db \ud65c\uc6a9"}]},{"@type":"WebSite","@id":"https:\/\/apollo89.com\/wordpress\/#website","url":"https:\/\/apollo89.com\/wordpress\/","name":"Apollo89.com","description":"\uc544\ud3f4\ub85c\uc528\uc758 \uc7a1\ub2e4\ud55c \uacbd\ud5d8\ub4e4..","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/apollo89.com\/wordpress\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Person","@id":"https:\/\/apollo89.com\/wordpress\/#\/schema\/person\/93f56825cac3b2f18e5f107995066c82","name":"apollo89","description":"\uc544\ud3f4\ub85c89 \uc785\ub2c8\ub2e4.","url":"https:\/\/apollo89.com\/wordpress\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/posts\/9372","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=9372"}],"version-history":[{"count":8,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/posts\/9372\/revisions"}],"predecessor-version":[{"id":9565,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/posts\/9372\/revisions\/9565"}],"wp:attachment":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=9372"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=9372"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=9372"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}