mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-11 00:26:55 +08:00
21 lines
523 B
YAML
21 lines
523 B
YAML
version: "2.1"
|
|
services:
|
|
couchdb:
|
|
image: couchdb:3.3.3
|
|
container_name: ${CONTAINER_NAME}
|
|
environment:
|
|
- COUCHDB_USER=${OBSIDIAN_LIVESYNC_USER}
|
|
- COUCHDB_PASSWORD=${OBSIDIAN_LIVESYNC_USER_PASSWORD}
|
|
volumes:
|
|
- ./data:/opt/couchdb/data
|
|
- ./conf/local.ini:/opt/couchdb/etc/local.ini
|
|
ports:
|
|
- ${PANEL_APP_PORT_HTTP}:5984
|
|
restart: unless-stopped
|
|
networks:
|
|
- 1panel-network
|
|
labels:
|
|
createdBy: "Apps"
|
|
networks:
|
|
1panel-network:
|
|
external: true |