22 lines
431 B
YAML
22 lines
431 B
YAML
version: "2.1"
|
|
|
|
services:
|
|
java:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
args:
|
|
- PINPOINT_VERSION=${PINPOINT_VERSION}
|
|
- AGENT_ID=${AGENT_ID}
|
|
- APP_NAME=${APP_NAME}
|
|
- SPRING_PROFILES=${SPRING_PROFILES}
|
|
container_name: "java"
|
|
image: "Your Image"
|
|
|
|
volumes_from:
|
|
- container:pinpoint-agent
|
|
|
|
networks:
|
|
default:
|
|
external:
|
|
name: pinpoint-agent_pinpoint |