{"id":3598,"date":"2023-04-12T15:39:37","date_gmt":"2023-04-12T15:39:37","guid":{"rendered":"https:\/\/quebit.com\/askquebit\/doing-development-with-postgresql-and-docker\/"},"modified":"2026-01-15T18:08:15","modified_gmt":"2026-01-15T18:08:15","slug":"doing-development-with-postgresql-and-docker","status":"publish","type":"post","link":"https:\/\/quebit.com\/askquebit\/doing-development-with-postgresql-and-docker\/","title":{"rendered":"How Do I Set Up and Use PostgreSQL with Docker for Development?"},"content":{"rendered":"<p>In this post I want to demonstrate how to create and start a Docker <a href=\"https:\/\/www.docker.com\/resources\/what-container\">container<\/a> using a Postgres image to run a <a href=\"https:\/\/www.postgresql.org\/\">PostgreSQL<\/a> database server in a Docker container so that I can do some development in my local environment.<\/p>\n<p><strong>Docker<\/strong><\/p>\n<p>Assuming <a href=\"https:\/\/docs.docker.com\/get-started\/overview\/\">Docker<\/a> is running, the first step is to create a container running <a href=\"https:\/\/www.postgresql.org\/\">PostgreSQL<\/a>. To do that, I open a MS Windows PowerShell window and type the following command:<\/p>\n<p>&#8212; Create the PostgreSQL Docker Container<\/p>\n<p>docker run &#8211;name pg_dbeavers -p 5439:5432 -e POSTGRES_PASSWORD=TheBest1969 -d postgres:latest<\/p>\n<p>I am naming my container \u201cpg_dbeavers\u201d and will be using port 5439 to communicate with it (5432 is the default port that PostgreSQL uses). I\u2019ve also set a password (TheBest1969) and requested the latest postgres image. Since Docker didn\u2019t find a PostgreSQL image in my local environment, the latest image is downloaded and used to create the new container. Once this is done, any other containers I create using this image the download will not be necessary.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2117 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/DP1-min.jpg\" alt=\"\" width=\"900\" height=\"203\" \/><\/p>\n<p>Once the container is created, you can use the following command to see the running containers:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2118 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/DP2-min.jpg\" alt=\"\" width=\"893\" height=\"224\" \/><\/p>\n<p>Once its up, you\u2019ll see it in Docker:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2119 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/DP3-min.jpg\" alt=\"\" width=\"932\" height=\"267\" \/><\/p>\n<p>To \u201cget things started\u201d in the PostgreSQL server I will create a new database and schema using <a href=\"https:\/\/www.postgresql.org\/docs\/13\/app-psql.html\"><strong>psql<\/strong><\/a>, which is\u00a0a terminal-based front-end to PostgreSQL. To accomplish this, I need to execute the following command in my PowerShell session:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2120 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/DP4-min.jpg\" alt=\"\" width=\"884\" height=\"255\" \/><\/p>\n<p>Now I am ready to use psql within my PostgreSQL server. First, I execute a Docker command to see what databases and schemas may already exist in my PostgreSQL server. To see what databases are currently running, I can type l:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2121 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/DP5-min.jpg\" alt=\"\" width=\"900\" height=\"180\" \/><\/p>\n<p>I see that the default database \u201cpostgres\u201d is running along with some template databases. I want to create a new database called \u201cmotorcycles\u201d so I use the following command:<\/p>\n<p>create database motorcycles;<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2122 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/DP6-min.jpg\" alt=\"\" width=\"900\" height=\"224\" \/><\/p>\n<p>After running that command, I will again use l and now see my new PostgreSQL database.<\/p>\n<p><strong>Schema<\/strong><\/p>\n<p>In PostgreSQL, a <a href=\"https:\/\/www.postgresqltutorial.com\/postgresql-schema\/\">schema<\/a> is\u00a0a namespace that contains named database objects such as tables, views, indexes, data types, functions, stored procedures and operators.\u00a0 I want to create a new schema, named \u201cjamesmillers\u201d within my motorcycles database, so first I use c to connect to that database and then the CREATE SCHEMA command to create my schema.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2123 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/DP7-min.jpg\" alt=\"\" width=\"883\" height=\"120\" \/><\/p>\n<p>Now that I have created my schema, I want to create a new table to hold some data so I can run this CREATE TABLE command:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2109 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/DP8-min.jpg\" alt=\"\" width=\"881\" height=\"320\" \/><\/p>\n<p>After the new table \u201ccycles\u201d (within the jamesmillers schema) is created, I tried using the dt command to list all of the tables, but I found that dt \u2018jamesmillers.*\u2019 is needed to show what tables exist <em>within my specific schema.<\/em> I can see that my tables \u201ccycles\u201d does in fact exist so next, I want to load some data so I can use the following command:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2110 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/DP9-min.jpg\" alt=\"\" width=\"893\" height=\"165\" \/><\/p>\n<p>You can see that the insert successfully inserted 1 row into the table and just to be sure, I executed a query on the table and the result is shown. Success!<\/p>\n<p><strong>DBeaver<\/strong><\/p>\n<p>PLSQL is fine, but now I want to explore my PostgreSQL database with the graphical user interface named <a href=\"https:\/\/dbeaver.com\/\">DBeaver<\/a>. DBeaver is a free multi-platform database tool for developers, database administrators, analysts and all people who need to work with databases. \u00a0Since I have already downloaded and configured the tool, I can go ahead and create a connection to my server.<\/p>\n<p><strong>Creating the Connection<\/strong><\/p>\n<p>To connect to the PostgreSQL server from DBeaver I clicked in the \u201c<strong>New Database Connection<\/strong>\u201d icon and was presented with the \u201c<strong>Connect to a database<\/strong>\u201d dialog (shown below) where I selected the PostgreSQL icon and then clicked <strong>Next<\/strong>:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2111 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/DP10-min.jpg\" alt=\"\" width=\"606\" height=\"600\" \/><\/p>\n<p>On the next dialog I need to set some specific connection settings. Notice the <strong>Host<\/strong> is set to \u201clocalhost\u201d since my Docker container is running locally. Next, I set the <strong>Port<\/strong> to 5439 (that is the port ID I set when I created and started my Docker image. I left the <strong>Database<\/strong> as \u201cpostgres\u201d which is the default database and lastly, entered the password (again from the Docker command I executed to start my image):<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignleft size-full wp-image-2112\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/DP11-min.jpg\" alt=\"\" width=\"686\" height=\"669\" \/><\/p>\n<p>One other step that is required is to click on the tabbed panel,\u00a0select<strong> PostgreSQL<\/strong>\u00a0, and then check the box <strong>Show all databases<\/strong>. This is done so that I will be able to access all database that are running within this server rather than just the database I named on the Main connection dialog.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignleft size-full wp-image-2113\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/DP12-min.jpg\" alt=\"\" width=\"879\" height=\"278\" \/><\/p>\n<p>Next, I can test the connection (click Test Connection) and verify that it connects successfully:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignleft size-full wp-image-2114\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/DP13-min.jpg\" alt=\"\" width=\"433\" height=\"264\" \/><\/p>\n<p>Click <strong>OK<\/strong> and then <strong>Save<\/strong> to save the new connection and then if we go to the <strong>Database Navigator<\/strong> panel in DBeaver, I see my \u201cmotorcycles\u201d database, the \u201cjamesmillers\u201d schema and the \u201ccycles\u201d table!<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignleft size-full wp-image-2115\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/DP14-min.jpg\" alt=\"\" width=\"419\" height=\"632\" \/><\/p>\n<p>As a last step, I can run a query on the cycles table, and I indeed do see my 1 row of data. Everything worked!<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignleft size-full wp-image-2116\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/DP15-min.jpg\" alt=\"\" width=\"900\" height=\"328\" \/><\/p>\n<p><strong>Conclusion<\/strong><\/p>\n<p>In this post I created and started a Docker container using a Postgres image to run a PostgreSQL database server in the Docker container in my local environment. Then I used plsql to create a new database in the server, a table and loaded some data. Finally, I created a connection to the server in DBeaver and was able to access the new database and table.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this post I want to demonstrate how to create and start a Docker container using a Postgres image to run a PostgreSQL database server in a Docker container so that I can do some development in my local environment. Docker Assuming Docker is running, the first step is to create a container running PostgreSQL.&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[27],"tags":[32],"class_list":["post-3598","post","type-post","status-publish","format-standard","hentry","category-quebit-value","tag-sql"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How Do I Set Up and Use PostgreSQL with Docker for Development? - QueBIT<\/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:\/\/quebit.com\/askquebit\/doing-development-with-postgresql-and-docker\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How Do I Set Up and Use PostgreSQL with Docker for Development? - QueBIT\" \/>\n<meta property=\"og:description\" content=\"In this post I want to demonstrate how to create and start a Docker container using a Postgres image to run a PostgreSQL database server in a Docker container so that I can do some development in my local environment. Docker Assuming Docker is running, the first step is to create a container running PostgreSQL.&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/quebit.com\/askquebit\/doing-development-with-postgresql-and-docker\/\" \/>\n<meta property=\"og:site_name\" content=\"QueBIT\" \/>\n<meta property=\"article:published_time\" content=\"2023-04-12T15:39:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-15T18:08:15+00:00\" \/>\n<meta name=\"author\" content=\"agoddard\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"agoddard\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/doing-development-with-postgresql-and-docker\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/doing-development-with-postgresql-and-docker\\\/\"},\"author\":{\"name\":\"agoddard\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/e52d72da0fd2f5f70d189343fe4f5084\"},\"headline\":\"How Do I Set Up and Use PostgreSQL with Docker for Development?\",\"datePublished\":\"2023-04-12T15:39:37+00:00\",\"dateModified\":\"2026-01-15T18:08:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/doing-development-with-postgresql-and-docker\\\/\"},\"wordCount\":882,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/doing-development-with-postgresql-and-docker\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/DP1-min.jpg\",\"keywords\":[\"SQL\"],\"articleSection\":[\"QueBIT Value\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/quebit.com\\\/askquebit\\\/doing-development-with-postgresql-and-docker\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/doing-development-with-postgresql-and-docker\\\/\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/doing-development-with-postgresql-and-docker\\\/\",\"name\":\"How Do I Set Up and Use PostgreSQL with Docker for Development? - QueBIT\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/doing-development-with-postgresql-and-docker\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/doing-development-with-postgresql-and-docker\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/DP1-min.jpg\",\"datePublished\":\"2023-04-12T15:39:37+00:00\",\"dateModified\":\"2026-01-15T18:08:15+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/e52d72da0fd2f5f70d189343fe4f5084\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/doing-development-with-postgresql-and-docker\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/quebit.com\\\/askquebit\\\/doing-development-with-postgresql-and-docker\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/doing-development-with-postgresql-and-docker\\\/#primaryimage\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/DP1-min.jpg\",\"contentUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/DP1-min.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/doing-development-with-postgresql-and-docker\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How Do I Set Up and Use PostgreSQL with Docker for Development?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#website\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/\",\"name\":\"QueBIT\",\"description\":\"QueBIT\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/e52d72da0fd2f5f70d189343fe4f5084\",\"name\":\"agoddard\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g\",\"caption\":\"agoddard\"},\"sameAs\":[\"https:\\\/\\\/quebit.com\\\/askquebit\"],\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/author\\\/agoddard\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How Do I Set Up and Use PostgreSQL with Docker for Development? - QueBIT","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:\/\/quebit.com\/askquebit\/doing-development-with-postgresql-and-docker\/","og_locale":"en_US","og_type":"article","og_title":"How Do I Set Up and Use PostgreSQL with Docker for Development? - QueBIT","og_description":"In this post I want to demonstrate how to create and start a Docker container using a Postgres image to run a PostgreSQL database server in a Docker container so that I can do some development in my local environment. Docker Assuming Docker is running, the first step is to create a container running PostgreSQL.&hellip;","og_url":"https:\/\/quebit.com\/askquebit\/doing-development-with-postgresql-and-docker\/","og_site_name":"QueBIT","article_published_time":"2023-04-12T15:39:37+00:00","article_modified_time":"2026-01-15T18:08:15+00:00","author":"agoddard","twitter_card":"summary_large_image","twitter_misc":{"Written by":"agoddard","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/quebit.com\/askquebit\/doing-development-with-postgresql-and-docker\/#article","isPartOf":{"@id":"https:\/\/quebit.com\/askquebit\/doing-development-with-postgresql-and-docker\/"},"author":{"name":"agoddard","@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/e52d72da0fd2f5f70d189343fe4f5084"},"headline":"How Do I Set Up and Use PostgreSQL with Docker for Development?","datePublished":"2023-04-12T15:39:37+00:00","dateModified":"2026-01-15T18:08:15+00:00","mainEntityOfPage":{"@id":"https:\/\/quebit.com\/askquebit\/doing-development-with-postgresql-and-docker\/"},"wordCount":882,"commentCount":0,"image":{"@id":"https:\/\/quebit.com\/askquebit\/doing-development-with-postgresql-and-docker\/#primaryimage"},"thumbnailUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/DP1-min.jpg","keywords":["SQL"],"articleSection":["QueBIT Value"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/quebit.com\/askquebit\/doing-development-with-postgresql-and-docker\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/quebit.com\/askquebit\/doing-development-with-postgresql-and-docker\/","url":"https:\/\/quebit.com\/askquebit\/doing-development-with-postgresql-and-docker\/","name":"How Do I Set Up and Use PostgreSQL with Docker for Development? - QueBIT","isPartOf":{"@id":"https:\/\/quebit.com\/askquebit\/#website"},"primaryImageOfPage":{"@id":"https:\/\/quebit.com\/askquebit\/doing-development-with-postgresql-and-docker\/#primaryimage"},"image":{"@id":"https:\/\/quebit.com\/askquebit\/doing-development-with-postgresql-and-docker\/#primaryimage"},"thumbnailUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/DP1-min.jpg","datePublished":"2023-04-12T15:39:37+00:00","dateModified":"2026-01-15T18:08:15+00:00","author":{"@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/e52d72da0fd2f5f70d189343fe4f5084"},"breadcrumb":{"@id":"https:\/\/quebit.com\/askquebit\/doing-development-with-postgresql-and-docker\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/quebit.com\/askquebit\/doing-development-with-postgresql-and-docker\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/quebit.com\/askquebit\/doing-development-with-postgresql-and-docker\/#primaryimage","url":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/DP1-min.jpg","contentUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/03\/DP1-min.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/quebit.com\/askquebit\/doing-development-with-postgresql-and-docker\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/quebit.com\/askquebit\/"},{"@type":"ListItem","position":2,"name":"How Do I Set Up and Use PostgreSQL with Docker for Development?"}]},{"@type":"WebSite","@id":"https:\/\/quebit.com\/askquebit\/#website","url":"https:\/\/quebit.com\/askquebit\/","name":"QueBIT","description":"QueBIT","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/quebit.com\/askquebit\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/e52d72da0fd2f5f70d189343fe4f5084","name":"agoddard","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g","caption":"agoddard"},"sameAs":["https:\/\/quebit.com\/askquebit"],"url":"https:\/\/quebit.com\/askquebit\/author\/agoddard\/"}]}},"_links":{"self":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/3598","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/comments?post=3598"}],"version-history":[{"count":1,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/3598\/revisions"}],"predecessor-version":[{"id":4910,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/3598\/revisions\/4910"}],"wp:attachment":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/media?parent=3598"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/categories?post=3598"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/tags?post=3598"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}