mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-10 21:16:55 +08:00
19 lines
408 B
YAML
19 lines
408 B
YAML
|
services:
|
||
|
java:
|
||
|
image: bitnami/java:${JAVA_VERSION}
|
||
|
container_name: ${CONTAINER_NAME}
|
||
|
working_dir: /app
|
||
|
volumes:
|
||
|
- ${CODE_DIR}:/app
|
||
|
- ./run.sh:/run.sh
|
||
|
- ./.env:/.env
|
||
|
command: bash /run.sh
|
||
|
networks:
|
||
|
- 1panel-network
|
||
|
ports:
|
||
|
- ${HOST_IP}:${PANEL_APP_PORT_HTTP}:${JAVA_APP_PORT}
|
||
|
restart: on-failure:5
|
||
|
networks:
|
||
|
1panel-network:
|
||
|
external: true
|