mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-23 08:01:00 +00:00
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
27 lines
606 B
YAML
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
|