13 lines
226 B
YAML
13 lines
226 B
YAML
version: '3.8'
|
|
services:
|
|
java-maven-app:
|
|
image: "${TAG}"
|
|
ports:
|
|
- 8080:8080
|
|
postgres:
|
|
image: postgres:13
|
|
ports:
|
|
- 5432:5432
|
|
environment:
|
|
- POSTGRES_PASSWORD=my-pwd
|