feat: update next-terminal v2.5.6

This commit is contained in:
arch3rPro
2025-07-21 10:04:35 +08:00
parent 3c82221261
commit 995ded0a22
5 changed files with 15 additions and 19 deletions

View File

@@ -1,26 +1,25 @@
services: services:
next-terminal: next-terminal:
image: dushixiang/next-terminal:v2.5.5 image: dushixiang/next-terminal:v2.5.6
container_name: ${CONTAINER_NAME} container_name: ${CONTAINER_NAME}
restart: always restart: always
networks: networks:
- 1panel-network - 1panel-network
ports: ports:
- "${PANEL_APP_PORT_HTTP}:8088" - ${PANEL_APP_PORT_HTTP}:8088
- "${PANEL_APP_PORT_SSH}:2022" - ${PANEL_APP_PORT_SSH}:2022
- "${PANEL_APP_PORT_PROXY_HTTP}:80" - ${PANEL_APP_PORT_PROXY_HTTP}:80
- "${PANEL_APP_PORT_PROXY_HTTPS}:443" - ${PANEL_APP_PORT_PROXY_HTTPS}:443
volumes: volumes:
- "/etc/localtime:/etc/localtime" - /etc/localtime:/etc/localtime
- "${DATA_PATH}:/usr/local/next-terminal/data" - ${DATA_PATH}:/usr/local/next-terminal/data
- ./logs:/usr/local/next-terminal/logs - ./logs:/usr/local/next-terminal/logs
- ./config.yaml:/etc/next-terminal/config.yaml - ./config.yaml:/etc/next-terminal/config.yaml
depends_on: depends_on:
- postgresql - postgresql
- guacd - guacd
labels: labels:
createdBy: "Apps" createdBy: Apps
postgresql: postgresql:
container_name: postgresql-${CONTAINER_NAME} container_name: postgresql-${CONTAINER_NAME}
image: postgres:16.4 image: postgres:16.4
@@ -33,7 +32,6 @@ services:
volumes: volumes:
- ./data/postgresql:/var/lib/postgresql/data - ./data/postgresql:/var/lib/postgresql/data
restart: always restart: always
guacd: guacd:
container_name: guacd-${CONTAINER_NAME} container_name: guacd-${CONTAINER_NAME}
image: dushixiang/guacd:latest image: dushixiang/guacd:latest
@@ -41,13 +39,11 @@ services:
networks: networks:
- 1panel-network - 1panel-network
volumes: volumes:
- "${DATA_PATH}:/usr/local/next-terminal/data" - ${DATA_PATH}:/usr/local/next-terminal/data
environment: environment:
- GUACD_LOG_LEVEL=debug - GUACD_LOG_LEVEL=debug
labels: labels:
createdBy: "Apps" createdBy: Apps
networks: networks:
1panel-network: 1panel-network:
external: true external: true