Files
Arch1Panel/apps/keepassxc/2.7.11/docker-compose.yml

22 lines
419 B
YAML
Raw Normal View History

2025-07-08 10:58:06 +08:00
services:
keepassxc:
container_name: ${CONTAINER_NAME}
2026-01-06 05:34:56 +08:00
image: linuxserver/keepassxc:2.7.11
2025-07-08 10:58:06 +08:00
restart: always
networks:
- 1panel-network
ports:
2025-09-02 00:12:25 +08:00
- ${PANEL_APP_PORT_HTTP}:3000
2025-07-08 10:58:06 +08:00
environment:
- TZ=Asia/Shanghai
- PUID=1000
- PGID=1000
volumes:
- ./config:/config
- ./db:/db
labels:
2025-09-02 00:12:25 +08:00
createdBy: Apps
2025-07-08 10:58:06 +08:00
networks:
1panel-network:
2025-09-02 00:12:25 +08:00
external: true