Skip to content

Commit e35e454

Browse files
add links
1 parent 84f9e03 commit e35e454

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

articles/container-apps/java-containers-intro.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -160,15 +160,13 @@ Most Java applications interact with databases, caches, or other services. Docke
160160
#### What is Docker Compose?
161161

162162
Docker Compose is a tool that:
163+
163164
- Defines multi-container applications in a single file
164165
- Manages application lifecycle (start, stop, rebuild)
165166
- Maintains isolated environments
166167
- Creates networks for service communication
167168
- Persists data using volumes
168169

169-
> [!NOTE]
170-
> Docker Compose is now integrated as a plugin to the Docker command itself (using `docker compose`) rather than as a separate utility. The preferred configuration filename is `compose.yml` instead of the legacy `docker-compose.yml`.
171-
172170
#### Example: Java application with database
173171

174172
Here's an example `compose.yml` that configures a Java application with a PostgreSQL database:
@@ -448,9 +446,9 @@ This section guides you through preparing your Java containers for Azure Contain
448446

449447
- **Probe for health**: Implement [health probes](health-probes.md) for Azure's liveness and readiness checks
450448

451-
- **Log configuration**: Configure logging to output to `stdout`/`stderr`.
449+
- **Log configuration**: Configure [logging](logging.md) to output to `stdout`/`stderr`.
452450

453-
- **Plan for the unexpected**: Set up proper graceful shutdown handling with time out configuration
451+
- **Plan for the unexpected**: Set up proper [graceful shutdown handling](./application-lifecycle-management.md) with time out configuration.
454452

455453
## Related content
456454

0 commit comments

Comments
 (0)