22 lines
569 B
YAML
22 lines
569 B
YAML
version: '2'
|
|
|
|
services:
|
|
app:
|
|
image: 'docker-spring-boot-postgres:latest'
|
|
build:
|
|
context: .
|
|
container_name: app
|
|
depends_on:
|
|
- db
|
|
environment:
|
|
- SPRING_DATASOURCE_URL=jdbc:postgresql://db:5432/compose-postgres
|
|
- SPRING_DATASOURCE_USERNAME=compose-postgres
|
|
- SPRING_DATASOURCE_PASSWORD=compose-postgres
|
|
- SPRING_JPA_HIBERNATE_DDL_AUTO=update
|
|
|
|
db:
|
|
image: 'postgres:13.1-alpine'
|
|
container_name: db
|
|
environment:
|
|
- POSTGRES_USER=compose-postgres
|
|
- POSTGRES_PASSWORD=compose-postgres |