mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-24 16:01:02 +00:00
Package the official WhoDB Community image for latest and 0.122.0 with persistent encrypted sessions and a separate local database directory.
23 lines
488 B
YAML
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
|