Initial Commit

This commit is contained in:
digimint 2024-06-19 20:55:25 -05:00
commit d190beb7bf
Signed by: digimint
GPG key ID: 8DF1C6FD85ABF748
13 changed files with 382 additions and 0 deletions

View file

@ -0,0 +1,26 @@
# Use postgres/example user/password credentials
version: '3.9'
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: Xo65TR6yzUJe2i4t9pQD6AfNGe23Y8ww8CtW7aADfrLLivSsuYpB36oyXXBLH443
ports:
- 5432:5432
adminer:
image: adminer
restart: always
ports:
- 8080:8080