mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-23 16:01:01 +00:00
Add the verified MicroWARP packages to the localApps branch, including real SOCKS egress verification, retry and rollback behavior, and upgrade-safe replacement of legacy root rotation scripts while preserving user data.
34 lines
815 B
YAML
34 lines
815 B
YAML
services:
|
|
microwarp:
|
|
image: "ghcr.io/ccbkkb/microwarp:latest"
|
|
container_name: ${CONTAINER_NAME}
|
|
labels:
|
|
createdBy: "Apps"
|
|
ports:
|
|
- "${PANEL_APP_PORT_SOCKS5}:${BIND_PORT}"
|
|
environment:
|
|
- TZ=${TZ}
|
|
- BIND_ADDR=0.0.0.0
|
|
- BIND_PORT=${BIND_PORT}
|
|
- SOCKS_USER=${SOCKS_USER:-}
|
|
- SOCKS_PASS=${SOCKS_PASS:-}
|
|
- ENDPOINT_IP=${ENDPOINT_IP:-}
|
|
- GH_PROXY=${GH_PROXY:-}
|
|
- TAILSCALE_CIDR=${TAILSCALE_CIDR:-100.64.0.0/10}
|
|
- MTU=${MTU}
|
|
- WARP_WGCF_CONF=${WARP_WGCF_CONF:-}
|
|
cap_add:
|
|
- NET_ADMIN
|
|
- SYS_MODULE
|
|
sysctls:
|
|
- net.ipv4.conf.all.src_valid_mark=1
|
|
volumes:
|
|
- "${APP_DATA_DIR_1}:/etc/wireguard"
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|