1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-03-18 04:31:05 +08:00
1Panel-Appstore/apps/filecodebox/2.2.1/docker-compose.yml
pooneyy 1177e766ca
feat(filecodebox): add version 2.2.1 configuration files
- 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
2025-11-10 16:08:41 +08:00

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