Files
renovate[bot] e4d01c4de6 simplex-smp-server: adapt v7 package to upstream runtime
Origin: renovate PR #4511\n\n- update simplexchat/smp-server to v7.0.0\n- remove the obsolete HTTP info-page override and keep the SMP relay port\n- source runtime path variables in lifecycle scripts\n- delete legacy stats logs during 6.5.x -> 7.0.0 upgrade to avoid v7 startup failure
2026-07-04 20:20:47 +08:00

27 lines
606 B
YAML

services:
simplex-smp-server:
image: "simplexchat/smp-server:latest"
container_name: ${CONTAINER_NAME}
environment:
- ADDR=${ADDR}
- PASS=${PASS}
ports:
- "${PANEL_APP_PORT_SMP}:5223"
volumes:
- "${APP_CONFIG_DIR}:/etc/opt/simplex"
- "${APP_STATE_DIR}:/var/opt/simplex"
healthcheck:
test:
- CMD-SHELL
- >-
bash -lc 'exec 3<>/dev/tcp/127.0.0.1/5223; exec 3>&-; exec 3<&-'
labels:
createdBy: Apps
networks:
- 1panel-network
restart: unless-stopped
networks:
1panel-network:
external: true