mirror of
https://github.com/pooneyy/1Panel-Appstore.git
synced 2026-03-17 22:21:03 +08:00
- add explicit :latest tag to looking-glass-server, owjdxb, linkstack, and watchtower images - update headscale-ui image from latest to specific version 2025.08.23 - update verysync image to specific version v2.20.1 - update headscale-ui from 2025.05.22 to 2025.08.23 version - 【fix】amend clear app configuration file and update from v1.0.4 to v1.0.9
29 lines
693 B
YAML
29 lines
693 B
YAML
services:
|
|
linkstack:
|
|
image: linkstackorg/linkstack:latest
|
|
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:
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true |