mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-25 15:58:48 +08:00
078188a8c3
* chore(deps): update whyour/qinglong docker tag to v2.15.17 * Update app version --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
18 lines
452 B
YAML
18 lines
452 B
YAML
version: '2'
|
|
services:
|
|
qinglong:
|
|
# alpine 基础镜像版本
|
|
image: whyour/qinglong:2.15.17
|
|
container_name: ${CONTAINER_NAME} #固定写法,勿改
|
|
networks:
|
|
- 1panel-network
|
|
# debian-slim 基础镜像版本
|
|
# image: whyour/qinglong:debian
|
|
volumes:
|
|
- "${DATA_PATH}:/opt/qinglong/data"
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:5700"
|
|
restart: always
|
|
networks:
|
|
1panel-network:
|
|
external: true |