mirror of
https://github.com/sveltejs/svelte.git
synced 2024-11-25 00:51:01 +01:00
42076a7502
Co-authored-by: Conduitry <git@chor.date> Co-authored-by: bluwy <bjornlu.dev@gmail.com>
16 lines
297 B
YAML
16 lines
297 B
YAML
version: "3.0"
|
|
services:
|
|
postgres:
|
|
image: postgres:13.4
|
|
ports:
|
|
- "5432:5432"
|
|
environment:
|
|
- POSTGRES_DB=${PGDATABASE}
|
|
- POSTGRES_USER=${PGUSER}
|
|
- POSTGRES_PASSWORD=${PGPASSWORD}
|
|
adminer:
|
|
image: adminer
|
|
restart: always
|
|
ports:
|
|
- "4000:8080"
|