improve dev tooling and stuff

This commit is contained in:
askiiart 2025-01-24 16:49:42 -06:00
parent da44c632b7
commit 595e246456
Signed by untrusted user who does not match committer: askiiart
GPG key ID: 6A32977DAF31746A
3 changed files with 29 additions and 10 deletions

View file

@ -3,25 +3,23 @@ services:
image: 'docker.io/library/postgres:17-alpine'
container_name: 'gregory-pg'
environment:
POSTGRES_PASSWORD: 'ChangeMeeeeeeeeeeeeee'
# if there's already a he/him gregory down the hall, then change it to gregory_it_its, to make sure you know it's gregory, the program, not gregory the he/him down the hall
# ig if there's an it/its gregory already then they just have to change their name to Its Majesty Queen Henry the Eighth
# oops sorry it/its gregory down the hall, correction: it just has to changes its name
POSTGRES_USER: 'gregory'
POSTGRES_DB: 'gregory'
POSTGRES_PASSWORD: 'pass'
volumes:
- './gregory-pg:/var/lib/postgresql/data'
ports:
- '5432:5432'
- './dev/gregory-pg:/var/lib/postgresql/data'
pgadmin4:
image: docker.io/dpage/pgadmin4
container_name: pgadmin4
environment:
PGADMIN_DEFAULT_EMAIL: mail@example.com
PGADMIN_DEFAULT_PASSWORD: password
PGADMIN_DEFAULT_EMAIL: a@a.aaa
PGADMIN_DEFAULT_PASSWORD: pass
PGADMIN_DISABLE_POSTFIX: 1
volumes:
- ./pgadmin:/var/lib/pgadmin
- ./dev/pgadmin:/var/lib/pgadmin
ports:
- 5050:80
- 127.0.0.1:5050:80