diff options
| author | Emma Terzioglu <emreterzioglu49@gmail.com> | 2026-03-13 13:49:15 -0700 |
|---|---|---|
| committer | Emma Terzioglu <emreterzioglu49@gmail.com> | 2026-03-13 13:49:15 -0700 |
| commit | 7a33856a527aebbd8d2a624c6d5937c25c9a1d90 (patch) | |
| tree | 855c642394e7ba1de40b8bb8737be12bec0aedaf /docker-compose.dev.yaml | |
initial commit
new website repo yay!!!
Diffstat (limited to 'docker-compose.dev.yaml')
| -rw-r--r-- | docker-compose.dev.yaml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docker-compose.dev.yaml b/docker-compose.dev.yaml new file mode 100644 index 0000000..09c3df5 --- /dev/null +++ b/docker-compose.dev.yaml @@ -0,0 +1,13 @@ +services: + postgres: + image: postgres:18 + restart: unless-stopped + environment: + POSTGRES_PASSWORD: postgres + POSTGRES_USER: postgres + POSTGRES_DB: emma + PGDATA: /var/lib/postgresql/data/pgdata + volumes: + - ./pg_data:/var/lib/postgresql/data + ports: + - 5432:5432 |
