mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-25 08:01:02 +00:00
35 lines
773 B
YAML
35 lines
773 B
YAML
services:
|
|
joplin:
|
|
image: "linuxserver/joplin:latest"
|
|
container_name: ${CONTAINER_NAME}
|
|
labels:
|
|
createdBy: "Apps"
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:3000"
|
|
- "${PANEL_APP_PORT_HTTPS}:3001"
|
|
environment:
|
|
- PUID=${PUID}
|
|
- PGID=${PGID}
|
|
- TZ=${TZ}
|
|
- LC_ALL=${LC_ALL}
|
|
- CUSTOM_USER=${CUSTOM_USER}
|
|
- PASSWORD=${PASSWORD}
|
|
- TITLE=${TITLE:-Joplin}
|
|
- SELKIES_UI_TITLE=${SELKIES_UI_TITLE:-Selkies}
|
|
- DASHBOARD=${DASHBOARD:-selkies-dashboard}
|
|
volumes:
|
|
- "joplin-config:/config"
|
|
shm_size: ${SHM_SIZE}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|
|
name: 1panel-network
|
|
|
|
volumes:
|
|
joplin-config:
|
|
name: joplin-config
|