1
0

feat(linkstack): update documentation and simplify application configuration

- Rewrite README.md in Chinese and add README_en.md in English to focus on product introduction and main features
- Update data.yml with improved multilingual descriptions, architecture support, and simplified form fields (only HTTP port configuration)
- Simplify docker-compose.yml by removing unnecessary environment variables and using volume mount instead of named volume
- Add init.sh script for container initialization and update logo.png file
- Remove .env.sample file with complex environment variables
This commit is contained in:
pooneyy
2026-01-06 02:20:39 +08:00
parent 739fda72c5
commit b22683d153
8 changed files with 66 additions and 184 deletions

View File

@@ -2,29 +2,15 @@ services:
linkstack:
image: linkstackorg/linkstack:latest
pull_policy: always
volumes:
- ./data:/htdocs
ports:
- ${PANEL_APP_PORT_HTTP}:80
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:80"
- "${PANEL_APP_PORT_HTTPS}:443"
hostname: ${CONTAINER_NAME}
environment:
- HTTP_SERVER_NAME=${HTTP_SERVER_NAME}
- HTTPS_SERVER_NAME=${HTTPS_SERVER_NAME}
- SERVER_ADMIN=${SERVER_ADMIN}
- TZ=${TIME_ZONE}
- PHP_MEMORY_LIMIT=${PHP_MEMORY_LIMIT}
- UPLOAD_MAX_FILESIZE=${UPLOAD_MAX_FILESIZE}
volumes:
- linkstack:/htdocs
labels:
createdBy: "Apps"
volumes:
linkstack:
createdBy: Apps
networks:
1panel-network:
external: true