Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
feat: use docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
yechentide committed Oct 16, 2023
1 parent 68669dc commit f8b87af
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docker/mhnow-db/compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: '3'
services:
postgresql:
image: postgres:15
# platform: linux/amd64 # for mac silicon chip
hostname: db
container_name: postgresql
environment:
- TZ=Asia/Tokyo
- POSTGRES_DB=mhnow
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
ports:
- 5432:5432

0 comments on commit f8b87af

Please sign in to comment.