24 lines
639 B
YAML
24 lines
639 B
YAML
version: '3.8'
|
|
|
|
networks:
|
|
default:
|
|
name: ${NAMESPACE}
|
|
external: true
|
|
services:
|
|
server:
|
|
image: 'xuxueli/xxl-job-admin:2.2.0'
|
|
ports:
|
|
- '${NODE_PORT}:8080'
|
|
environment:
|
|
- TZ=Asia/Shanghai
|
|
- PARAMS=--spring.datasource.url=jdbc:mysql://${DATASOURCE_URL}?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&serverTimezone=Asia/Shanghai --spring.datasource.username=${DATASOURCE_USERNAME} --spring.datasource.password=${DATASOURCE_PASSWORD}
|
|
deploy:
|
|
update_config:
|
|
order: start-first
|
|
placement:
|
|
constraints:
|
|
- node.labels.${NAMESPACE}_xxl_job_admin==1
|
|
|
|
|
|
|