feat: with return url

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-11-21 21:53:39 +01:00
parent 6bf847a24a
commit 9510b8fc42
13 changed files with 312 additions and 96 deletions

View File

@@ -0,0 +1,7 @@
target/
.git/
.cuddle/
scripts/
cuddle.yaml
local.sh
README.md

View File

@@ -0,0 +1,17 @@
version: '3.7'
services:
db:
image: bitnami/postgresql:16
restart: always
environment:
- POSTGRESQL_USERNAME=nefarious-test
- POSTGRESQL_DATABASE=nefarious-test
- POSTGRESQL_PASSWORD=somenotverysecurepassword
ports:
- 5432:5432
volumes:
- pgdata:/var/lib/postgresql/data
volumes:
pgdata: