add docker compose for pg

This commit is contained in:
Muyao CHEN 2024-07-15 15:13:21 +02:00
parent 4ec8c5d9a1
commit 3f1dfeabc2
2 changed files with 26 additions and 0 deletions

1
.gitignore vendored
View File

@ -2,3 +2,4 @@
**/c.html **/c.html
bookings bookings
database.yml database.yml
postgres/docker-compose.yml

View File

@ -0,0 +1,25 @@
# Use postgres/postgres user/password credentials
services:
db:
image: postgres
restart: always
# set shared memory limit when using docker-compose
shm_size: 128mb
# or set shared memory limit when deploy via swarm stack
#volumes:
# - type: tmpfs
# target: /dev/shm
# tmpfs:
# size: 134217728 # 128*2^20 bytes = 128Mb
environment:
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
adminer:
image: adminer
restart: always
ports:
- 8081:8080