Files
appstore/apps/pulse/6.2.1/docker-compose.yml
T

43 lines
1.1 KiB
YAML

services:
pulse:
image: "docker.io/rcourtman/pulse:6.2.1@sha256:5cf69280269cf150beb9274102ccb6913addb2b2a0165943860dc91b831ffebd"
container_name: ${CONTAINER_NAME}
restart: unless-stopped
user: "1000:1000"
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:7655"
environment:
- TZ=${PULSE_TIMEZONE}
- PULSE_AUTH_USER=${PULSE_AUTH_USER}
- PULSE_AUTH_PASS=${PULSE_AUTH_PASS}
- PULSE_DATA_DIR=/data
- PULSE_DOCKER=true
- PULSE_DEPLOYMENT_METHOD=docker_compose
- PULSE_TELEMETRY=${PULSE_TELEMETRY}
- PULSE_DISABLE_DOCKER_UPDATE_ACTIONS=true
cap_drop:
- ALL
security_opt:
- no-new-privileges:true
volumes:
- "${APP_DATA_DIR}:/data"
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
healthcheck:
test: ["CMD", "/docker-healthcheck.sh"]
interval: 30s
timeout: 3s
retries: 3
start_period: 10s
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true