mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-25 00:01:02 +00:00
Package the official read-only file server for latest and 0.35.0 with generated access credentials, a read-only host mount, and strict multilingual metadata.
25 lines
580 B
YAML
25 lines
580 B
YAML
services:
|
|
miniserve:
|
|
image: svenstaro/miniserve:latest
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:8080"
|
|
environment:
|
|
MINISERVE_PATH: /data
|
|
MINISERVE_PORT: "8080"
|
|
MINISERVE_INTERFACE: 0.0.0.0
|
|
MINISERVE_AUTH: "${MINISERVE_USERNAME}:${MINISERVE_PASSWORD}"
|
|
MINISERVE_NO_SYMLINKS: "true"
|
|
MINISERVE_VERBOSE: "true"
|
|
volumes:
|
|
- "${MOUNT_PATH}:/data:ro"
|
|
labels:
|
|
createdBy: "Apps"
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|