17 lines
365 B
YAML
17 lines
365 B
YAML
services:
|
|
kvstore:
|
|
build:
|
|
context: .
|
|
args:
|
|
APT_MIRROR: ${APT_MIRROR:-mirrors.aliyun.com}
|
|
image: kvstore:single
|
|
container_name: kvstore
|
|
restart: unless-stopped
|
|
security_opt:
|
|
- seccomp=unconfined
|
|
ports:
|
|
- "8888:8888"
|
|
volumes:
|
|
- ./config/config.xml:/app/config/config.xml:ro
|
|
- ./data:/app/data
|