✨ 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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user