mirror of
https://github.com/dalbodeule/snap-admin.git
synced 2025-06-08 13:28:21 +00:00
Introduced a new `debugBackend` module to support debugging and development tasks. This includes configuration for PostgreSQL, Redis, Hibernate, Spring Boot, and a basic security setup. Also added required entities, repositories, and runtime hints for SnapAdmin integration.
21 lines
468 B
YAML
21 lines
468 B
YAML
services:
|
|
pgvector:
|
|
image: 'pgvector/pgvector:pg16'
|
|
environment:
|
|
- 'POSTGRES_DB=mydatabase'
|
|
- 'POSTGRES_PASSWORD=secret'
|
|
- 'POSTGRES_USER=myuser'
|
|
labels:
|
|
- "org.springframework.boot.service-connection=postgres"
|
|
ports:
|
|
- target: 5432
|
|
published: 55432
|
|
protocol: tcp
|
|
volumes:
|
|
- postgresql:/var/lib/postgresql/data
|
|
redis:
|
|
image: 'redis:latest'
|
|
ports:
|
|
- '6379'
|
|
volumes:
|
|
postgresql: |