
All checks were successful
GBCI / build (push) Successful in 8m31s
- Implemented ALM container setup with Forgejo installation and systemd service configuration. - Created Bot container setup with necessary dependencies and Node.js application installation. - Developed Desktop container setup with XRDP and Brave browser installation. - Established Directory container setup with Zitadel installation and service configuration. - Added Doc Editor container setup for Collabora Online integration. - Implemented Drive container setup with MinIO installation and service configuration. - Created Email container setup with Stalwart Mail installation and service configuration. - Developed Meeting container setup with LiveKit and TURN server configuration. - Added Proxy container setup with Caddy installation and service configuration. - Implemented System container setup for general bots with service configuration. - Created Table Editor container setup with NocoDB installation and service configuration. - Developed Tables container setup with PostgreSQL installation and configuration. - Added Webmail container setup with Roundcube installation and service configuration. - Included prompt guidelines for container setup scripts.
57 lines
1.6 KiB
Bash
57 lines
1.6 KiB
Bash
#!/bin/bash
|
|
HOST_BASE="/opt/gbo/tenants/$PARAM_TENANT/system"
|
|
HOST_DATA="$HOST_BASE/data"
|
|
HOST_CONF="$HOST_BASE/conf"
|
|
HOST_LOGS="$HOST_BASE/logs"
|
|
HOST_BIN="$HOST_BASE/bin"
|
|
BIN_PATH="/opt/gbo/bin"
|
|
CONTAINER_NAME="${PARAM_TENANT}-system"
|
|
|
|
# Create host directories
|
|
mkdir -p "$HOST_DATA" "$HOST_CONF" "$HOST_LOGS" || exit 1
|
|
chmod -R 750 "$HOST_BASE" || exit 1
|
|
|
|
|
|
lxc launch images:debian/12 $CONTAINER_NAME -c security.privileged=true
|
|
sleep 15
|
|
|
|
lxc exec $CONTAINER_NAME -- bash -c '
|
|
|
|
apt-get update && apt-get install -y wget
|
|
|
|
useradd -r -s /bin/false gbuser || true
|
|
mkdir -p /opt/gbo/logs /opt/gbo/bin /opt/gbo/data /opt/gbo/conf
|
|
chown -R gbuser:gbuser /opt/gbo/
|
|
|
|
cat > /etc/systemd/system/system.service <<EOF
|
|
[Unit]
|
|
Description=General Bots System Service
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=gbuser
|
|
Group=gbuser
|
|
ExecStart=/opt/gbo/bin/gbserver
|
|
StandardOutput=append:/opt/gbo/logs/output.log
|
|
StandardError=append:/opt/gbo/logs/error.log
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
|
|
systemctl daemon-reload
|
|
systemctl enable system
|
|
systemctl start system
|
|
'
|
|
|
|
lxc config device add $CONTAINER_NAME bin disk source="${HOST_BIN}" path=/opt/gbo/bin
|
|
lxc config device add $CONTAINER_NAME data disk source="${HOST_DATA}" path=/opt/gbo/data
|
|
lxc config device add $CONTAINER_NAME conf disk source="${HOST_CONF}" path=/opt/gbo/conf
|
|
lxc config device add $CONTAINER_NAME logs disk source="${HOST_LOGS}" path=/opt/gbo/logs
|
|
|
|
|
|
lxc config device remove $CONTAINER_NAME proxy 2>/dev/null || true
|
|
lxc config device add $CONTAINER_NAME proxy proxy \
|
|
listen=tcp:0.0.0.0:"${PARAM_SYSTEM_PORT}" \
|
|
connect=tcp:127.0.0.1:"${PARAM_SYSTEM_PORT}"
|