mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-10 21:16:55 +08:00
19 lines
478 B
YAML
19 lines
478 B
YAML
services:
|
|
keydb:
|
|
image: eqalpha/keydb:${ARCH}_v6.3.4
|
|
restart: always
|
|
container_name: ${CONTAINER_NAME}
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- ${PANEL_APP_PORT_HTTP}:6379
|
|
command: keydb-server /etc/keydb/keydb.conf --requirepass ${PANEL_KEYDB_ROOT_PASSWORD}
|
|
volumes:
|
|
- ./data:/data
|
|
- ./conf/keydb.conf:/etc/keydb/keydb.conf
|
|
- ./logs:/logs
|
|
labels:
|
|
createdBy: "Apps"
|
|
networks:
|
|
1panel-network:
|
|
external: true |