mirror of
https://github.com/arch3rPro/1Panel-Appstore.git
synced 2026-04-15 00:17:12 +08:00
- Add skill configuration for generating 1Panel app configs via AI - Include templates for data.yml and docker-compose.yml - Add utility scripts for app generation, icon download, and validation - Provide reference examples and usage documentation - Update .gitignore to exclude .trae directory - Update README.md with skill usage instructions
21 lines
396 B
Smarty
21 lines
396 B
Smarty
services:
|
|
${SERVICE_NAME}:
|
|
container_name: \${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "\${PANEL_APP_PORT_HTTP}:${PORT}"
|
|
volumes:
|
|
- ./data/data:/app/data
|
|
environment:
|
|
- PUID=0
|
|
- PGID=0
|
|
- UMASK=022
|
|
image: ${IMAGE}:${TAG}
|
|
labels:
|
|
createdBy: "Apps"
|
|
networks:
|
|
1panel-network:
|
|
external: true
|