Files
appstore/apps/whodb/latest/docker-compose.yml
T
okxlin 956b3775a1 Add WhoDB application
Package the official WhoDB Community image for latest and 0.122.0 with persistent encrypted sessions and a separate local database directory.
2026-07-28 17:08:34 +08:00

23 lines
488 B
YAML

services:
whodb:
image: clidey/whodb:latest
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:8080"
environment:
- WHODB_ENCRYPTION_KEY=${WHODB_ENCRYPTION_KEY}
- WHODB_SECURE=${WHODB_SECURE}
- WHODB_DATA_DIR=/data
volumes:
- "${APP_DATA_DIR}:/data"
- "${DB_DATA_DIR}:/db"
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true