mirror of
https://github.com/pooneyy/1Panel-Appstore.git
synced 2026-03-18 05:41:03 +08:00
- add .env.sample with container name, port, and data path configuration - add data.yml with form fields for port and data folder path settings - add docker-compose.yml with service configuration and network setup
18 lines
341 B
YAML
18 lines
341 B
YAML
services:
|
|
filecodebox:
|
|
image: lanol/filecodebox:2.2.1
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:12345"
|
|
volumes:
|
|
- "${DATA_PATH}:/app/data"
|
|
labels:
|
|
createdBy: "Apps"
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|