java-common-code/docker-compose.yaml
2025-10-11 11:25:16 +09:00

12 lines
307 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

version: "3.9"
services:
app:
image: eclipse-temurin:21-jdk
working_dir: /app
volumes:
- ./src:/app # ← bind mountホストの ./src を /app に)
tty: true
stdin_open: true
command: bash
# # command: bash -lc "javac Hello.java && java Hello"