๐Ÿ“ฆ agentscope-ai / agentscope-java

๐Ÿ“„ docker-entrypoint.sh ยท 14 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14#!/bin/bash
# Custom entrypoint for Nacos with password initialization
# This script starts the password init script in background and then starts Nacos

echo "[entrypoint] Starting Nacos with password initialization..."

# Start the password initialization script in background
/home/nacos/init-password.sh &

# Execute the original Nacos startup
# The base Nacos image uses bin/docker-startup.sh
exec /home/nacos/bin/docker-startup.sh