made cross-platform development easier
Signed-off-by: ari melody <ari@arimelody.me>
This commit is contained in:
parent
4b5e6a50ff
commit
9d56ca63af
5 changed files with 85 additions and 22 deletions
18
docker-compose-db.yml
Normal file
18
docker-compose-db.yml
Normal file
|
@ -0,0 +1,18 @@
|
|||
version: '3.9'
|
||||
|
||||
services:
|
||||
db:
|
||||
image: postgres:16.1-alpine3.18
|
||||
container_name: arimelody.me-db
|
||||
ports:
|
||||
- 5432:5432
|
||||
volumes:
|
||||
- arimelody-db:/var/lib/postgresql/data
|
||||
environment:
|
||||
POSTGRES_DB: arimelody
|
||||
POSTGRES_USER: arimelody
|
||||
POSTGRES_PASSWORD: fuckingpassword
|
||||
|
||||
volumes:
|
||||
arimelody-db:
|
||||
external: true
|
Loading…
Add table
Add a link
Reference in a new issue