mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-24 08:01:04 +00:00
Add NasCab with latest and 3.6.1 versions using the official ypptec/nascab image, separate media/state mounts, and conservative HTTP-only default exposure. Validated with adapter strict checks, env closure, docker compose config, and real 1Panel v2 fresh-install smoke for latest and 3.6.1 including restart, uninstall, and cleanup.
21 lines
409 B
YAML
21 lines
409 B
YAML
services:
|
|
nascab:
|
|
image: "ypptec/nascab:latest"
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:80"
|
|
environment:
|
|
- TZ=${TZ}
|
|
volumes:
|
|
- "${MEDIA_PATH}:/myData"
|
|
- "${STATE_PATH}:/root/.local/share/nascab"
|
|
labels:
|
|
createdBy: "Apps"
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|