mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-22 15:25:49 +00:00
Finalizado
This commit is contained in:
parent
56ff13a905
commit
965892a596
2 changed files with 15 additions and 0 deletions
|
@ -19,3 +19,17 @@ services:
|
|||
- POSTGRES_PASSWORD=petclinic
|
||||
- POSTGRES_USER=petclinic
|
||||
- POSTGRES_DB=petclinic
|
||||
phpmyadmin:
|
||||
image: phpmyadmin
|
||||
ports:
|
||||
- 8088:80
|
||||
environment:
|
||||
- PMA_HOST=mysql
|
||||
pgadmin:
|
||||
image: dpage/pgadmin4
|
||||
restart: always
|
||||
environment:
|
||||
PGADMIN_DEFAULT_EMAIL: admin@admin.com
|
||||
PGADMIN_DEFAULT_PASSWORD: petclinic
|
||||
ports:
|
||||
- "5050:80"
|
|
@ -8,6 +8,7 @@ spring.datasource.url=jdbc:h2:mem:testdb
|
|||
spring.h2.console.enabled=true
|
||||
spring.h2.console.settings.web-allow-others=true
|
||||
|
||||
spring.profiles.active=postgres
|
||||
# Web
|
||||
spring.thymeleaf.mode=HTML
|
||||
|
||||
|
|
Loading…
Reference in a new issue