mirror of
https://github.com/bitnami/containers.git
synced 2026-02-10 20:47:22 +08:00
12 lines
275 B
YAML
12 lines
275 B
YAML
version: '2'
|
|
|
|
services:
|
|
java:
|
|
tty: true # Enables debugging capabilities when attached to this container.
|
|
image: 'bitnami/java:latest'
|
|
command: ["tail", "-f", "/dev/null"] # To keep the container running
|
|
ports:
|
|
- 8080:8080
|
|
volumes:
|
|
- .:/app
|