tvl-depot/web/panettone/docker-compose.yml
Aspen Smith 7f3d93942a chore(web/panettone): Use postgres 16 in local dev
This is needed for the GENERATED ALWAYS AS...STORED stuff we'll be
doing for text search later on, but also just matches what's being run
in prod

Change-Id: I076ab88c9735f29b5f669107a339f99f80a00cc1
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11257
Reviewed-by: sterni <sternenseemann@systemli.org>
Tested-by: BuildkiteCI
2024-03-31 19:22:05 +00:00

11 lines
230 B
YAML

version: "3.4"
services:
postgres:
image: postgres:16
restart: always
environment:
POSTGRES_USER: panettone
POSTGRES_PASSWORD: password
POSTGRES_DB: panettone
ports:
- 127.0.0.1:5432:5432