- Bump MinerU version from 2.7.1 to 2.7.2 in .env.example, Dockerfile, README files, and docker-compose.yaml. - Update Gitea version from 1.25.2-rootless to 1.25.4-rootless in .env.example and docker-compose.yaml. - Add InfluxDB configuration files including .env.example, README.md, README.zh.md, and docker-compose.yaml with version 2.8.0. - Bump Phoenix version from 12.28.1-nonroot to 12.31.2-nonroot in .env.example and docker-compose.yaml, and update README files. - Introduce Selenium standalone configuration with version 144.0-20260120, including .env.example, README.md, README.zh.md, and docker-compose.yaml.
46 lines
1.4 KiB
YAML
46 lines
1.4 KiB
YAML
x-defaults: &defaults
|
|
restart: unless-stopped
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-size: 100m
|
|
max-file: "3"
|
|
|
|
services:
|
|
influxdb:
|
|
<<: *defaults
|
|
image: ${GLOBAL_REGISTRY:-}influxdb:${INFLUXDB_VERSION:-2.8.0}
|
|
environment:
|
|
TZ: ${TZ:-UTC}
|
|
# InfluxDB v2 initialization
|
|
DOCKER_INFLUXDB_INIT_MODE: ${INFLUXDB_INIT_MODE:-setup}
|
|
DOCKER_INFLUXDB_INIT_USERNAME: ${INFLUXDB_ADMIN_USERNAME:-admin}
|
|
DOCKER_INFLUXDB_INIT_PASSWORD: ${INFLUXDB_ADMIN_PASSWORD:-changeme123456}
|
|
DOCKER_INFLUXDB_INIT_ORG: ${INFLUXDB_ORG:-myorg}
|
|
DOCKER_INFLUXDB_INIT_BUCKET: ${INFLUXDB_BUCKET:-mybucket}
|
|
DOCKER_INFLUXDB_INIT_RETENTION: ${INFLUXDB_RETENTION:-0}
|
|
DOCKER_INFLUXDB_INIT_ADMIN_TOKEN: ${INFLUXDB_ADMIN_TOKEN:-mytoken123456}
|
|
volumes:
|
|
- influxdb_data:/var/lib/influxdb2
|
|
- influxdb_config:/etc/influxdb2
|
|
ports:
|
|
- "${INFLUXDB_PORT_OVERRIDE:-8086}:8086"
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
cpus: ${INFLUXDB_CPU_LIMIT:-2.0}
|
|
memory: ${INFLUXDB_MEMORY_LIMIT:-2G}
|
|
reservations:
|
|
cpus: ${INFLUXDB_CPU_RESERVATION:-0.5}
|
|
memory: ${INFLUXDB_MEMORY_RESERVATION:-512M}
|
|
healthcheck:
|
|
test: ["CMD", "influx", "ping"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 30s
|
|
|
|
volumes:
|
|
influxdb_data:
|
|
influxdb_config:
|