You'll probably want to use the officially-suported one, see docs.
Using PostgreSQL container with PostGIS support provided by mdillon/postgis.
- Copy
docker-compose.postgres.yaml
into the.ddev
folder in your project - Copy the full
commands/postgres
directory to your project's.ddev/commands
directory. For examplecp -r commands/postgres /.ddev/commands
- (optional) Update your config.yaml file to support auto-import/auto-export (see below)
Connect to postgres
host/db server from within the web container with:
Host: ddev-<projectname>-postgres
User: db
Password: db
Database: db
For external access, use the port used in your docker-compose.postgres.yaml
and 127.0.0.1
as host.
When using multiple project with PostgreSQL support, remember to update your docker-compose.postgres.yaml
to use different ports:
ports:
- <EXTERNAL_PORT>:5432
Two new ddev
commands are provided:
ddev pgsql_export
: Usepg_dump
to exportdb
to.ddev/import-db/postgresql.db.sql
ddev pgsql_import
: Usepgsql
to import.ddev/import-db/postgresql.db.sql
intodb
- Note that this must be executed with an empty database.
Example config.yaml
hooks configuration to automatically import/export the db
table:
# Add psql to your webserver
webimage_extra_packages: [postgresql-client]
# Automatically import and export PostgreSQL database on ddev start and stop
hooks:
pre-stop:
- exec-host: ddev pgsql_export
post-start:
- exec-host: ddev pgsql_import
There are also another non-plain-text formats that pg_dump
can generate, and you might need to work with them. If that's the case, there is also
a ddev pg_restore
command that will restore .ddev/import-db/postgresql.db.dump
into db
.
-
By default, this recipe adds a single database called
db
. But it's possible to create additional databases when you first initialize this service. -
The offical way to add multiple databases is outlined on the docker image under the "Initialization scripts"
EG. Lets create a second database called testing
.
-
Add
./pgsql-db:/docker-entrypoint-initdb.d
to thevolumes
section in to./.ddev/docker-composer.postgres.yaml
volumes: - "./pgsql-db:/docker-entrypoint-initdb.d"
-
Create
./.ddev/pgsql-db
folder if it doesn't already existmkdir ./.ddev/pgsql-db -p
-
Create a file called
./.ddev/pgsql-db/create_testing_database.sql
and add the following:CREATE DATABASE testing
-
Note: All .sql,.sql.gz, & *.sh files in
./.ddev/pgsql-db
will be executed so you can create multiple database or even seed data. -
Note: These files "are only run if you start the container with a data directory that is empty". IE. The first time you start the project. For exisiting projects, add a hook to import a sql dump if the database is empty, or run
ddev delete
to re-initialize the project. Remember to backup the database first (Eg.ddev pgsql_export
).
The postgres
image support postgis
, but you will need to create the extension before using it:
CREATE EXTENSION IF NOT EXISTS `postgis`;
Typo3 CMS supports PostgreSQL natively, but the Typo3 Installer has issues with the default db
database because the postgis
extension is enabled per default.
You will need to disable the extension before the installation:
DROP EXTENSION postgis CASCADE;
It’s safe to re-enable postgis
after the installation is complete.
- If your project only uses a Postgres database, you can disable the MySql & MariaDb services.
- Run the following command from your project root.
ddev config --omit-containers db
- Alternatively, you can update your project's
.ddev/config.yaml
directly by updating the following line:
omit_containers: [db]
- See .ddev/config.yaml Options for additional notes.
Future enhancements (PR's welcome here) include:
- Provide interactive custom commands to interact with the
postgres
utility in the container interactively. - Consider changing suggested import/export hooks into "exec" hooks with "service: postgres" instead of running
ddev pg*
on the host.