Skip to content

Setting up a Database

The Conference Guestbook website is about gathering feedback during conferences. We need to store the comments contributed by the conference attendees in a permanent storage.

A comment is best described by a fixed data structure: an author, their email, the text of the feedback, and an optional photo. The kind of data that can be best stored in a traditional relational database engine.

PostgreSQL is the database engine we will use.

Adding PostgreSQL to Docker Compose

On our local machine, we have decided to use Docker to manage services. The generated docker-compose.yml file already contains PostgreSQL as a service:

docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
###> doctrine/doctrine-bundle ###
database:
    image: postgres:${POSTGRES_VERSION:-13}-alpine
    environment:
    POSTGRES_DB: ${POSTGRES_DB:-app}
    # You should definitely change the password in production
    POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-ChangeMe}
    POSTGRES_USER: ${POSTGRES_USER:-symfony}
volumes:
    - db-data:/var/lib/postgresql/data:rw
    # You may use a bind-mounted host directory instead, so that it is harder to accidentally remove the volume and lose all your data!
    # - ./docker/db/data:/var/lib/postgresql/data:rw
###< doctrine/doctrine-bundle ###

This will install a PostgreSQL server and configure some environment variables that control the database name and credentials. The values do not really matter.

We also expose the PostgreSQL port (5432) of the container to the local host. That will help us access the database from our machine:

docker-compose.override.yml
1
2
3
4
5
###> doctrine/doctrine-bundle ###
database:
    ports:
    - "5432"
###< doctrine/doctrine-bundle ###

Note

The pdo_pgsql extension should have been installed when PHP was set up in a previous step.

Starting Docker Compose

Start Docker Compose in the background (-d):

1
$ docker-compose up -d

Wait a bit to let the database start up and check that everything is running fine:

1
2
3
4
5
$ docker-compose ps

        Name                      Command              State            Ports
---------------------------------------------------------------------------------------
guestbook_database_1   docker-entrypoint.sh postgres   Up      0.0.0.0:32780->5432/tcp

If there are no running containers or if the State column does not read Up, check the Docker Compose logs:

1
$ docker-compose logs

Accessing the Local Database

Using the psql command-line utility might prove useful from time to time. But you need to remember the credentials and the database name. Less obvious, you also need to know the local port the database runs on the host. Docker chooses a random port so that you can work on more than one project using PostgreSQL at the same time (the local port is part of the output of docker-compose ps).

If you run psql via the Symfony CLI, you don't need to remember anything.

The Symfony CLI automatically detects the Docker services running for the project and exposes the environment variables that psql needs to connect to the database.

Thanks to these conventions, accessing the database via symfony run is much easier:

1
$ symfony run psql

Note

If you don't have the psql binary on your local host, you can also run it via docker-compose:

1
$ docker-compose exec database psql main main

Dumping and Restoring Database Data

Use pg_dump to dump the database data:

1
$ symfony run pg_dump --data-only > dump.sql

And restore the data:

1
$ symfony run psql < dump.sql

Adding PostgreSQL to Platform.sh

For the production infrastructure on Platform.sh, adding a service like PostgreSQL should be done in the .platform/services.yaml file, which was already done via the webapp package recipe:

.platform/services.yaml
1
2
3
database:
    type: postgresql:13
    disk: 1024

The database service is a PostgreSQL database (same version as for Docker) that we want to provision with 1GB of disk.

We also need to "link" the DB to the application container, which is described in .platform.app.yaml:

.platform.app.yaml
1
2
relationships:
    database: "database:postgresql"

The database service of type postgresql is referenced as database on the application container.

Check that the pdo_pgsql extension is already installed for the PHP runtime:

.platform.app.yaml
1
2
3
4
5
runtime:
    extensions:
        # other extensions
        - pdo_pgsql
        # other extensions

Accessing the Platform.sh Database

PostgreSQL is now running both locally via Docker and in production on Platform.sh.

As we have just seen, running symfony run psql automatically connects to the database hosted by Docker thanks to environment variables exposed by symfony run.

If you want to connect to PostgreSQL hosted on the production containers, you can open an SSH tunnel between the local machine and the Platform.sh infrastructure:

1
2
$ symfony cloud:tunnel:open
$ symfony var:expose-from-tunnel

By default, Platform.sh services are not exposed as environment variables on the local machine. You must explicitly do so by running the var:expose-from-tunnel command. Why? Connecting to the production database is a dangerous operation. You can mess with real data.

Now, connect to the remote PostgreSQL database via symfony run psql as before:

1
$ symfony run psql

When done, don't forget to close the tunnel:

1
$ symfony cloud:tunnel:close

Tip

To run some SQL queries on the production database instead of getting a shell, you can also use the symfony sql command.

Exposing Environment Variables

Docker Compose and Platform.sh work seamlessly with Symfony thanks to environment variables.

Check all environment variables exposed by symfony by executing symfony var:export:

1
2
3
4
5
6
7
8
$ symfony var:export

PGHOST=127.0.0.1
PGPORT=32781
PGDATABASE=main
PGUSER=main
PGPASSWORD=main
# ...

The PG* environment variables are read by the psql utility. What about the others?

When a tunnel is open to Platform.sh with var:expose-from-tunnel, the var:export command returns remote environment variables:

1
2
3
4
$ symfony cloud:tunnel:open
$ symfony var:expose-from-tunnel
$ symfony var:export
$ symfony cloud:tunnel:close

Describing your Infrastructure

You might not have realized it yet, but having the infrastructure stored in files alongside of the code helps a lot. Docker and Platform.sh use configuration files to describe the project infrastructure. When a new feature needs an additional service, the code changes and the infrastructure changes are part of the same patch.

This work, including the code samples, is licensed under a Creative Commons BY-NC-SA 4.0 license.
TOC
    Version