Initial version of spring demo1
This commit is contained in:
parent
4213a9edc6
commit
401b03a247
22 changed files with 645 additions and 67 deletions
14
2024/07/spring_demo1/scripts/dev/compose.yml
Normal file
14
2024/07/spring_demo1/scripts/dev/compose.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
services:
|
||||
# app:
|
||||
# image: spring-demo1:latest
|
||||
# ports:
|
||||
# - "8080:8080"
|
||||
|
||||
db:
|
||||
image: postgres:latest
|
||||
environment:
|
||||
POSTGRES_PASSWORD: secret
|
||||
ports:
|
||||
- "5432:5432"
|
||||
volumes:
|
||||
- /opt/pg-data:/var/lib/postgresql/data
|
Loading…
Add table
Add a link
Reference in a new issue