Files
docker-discord/entrypoint.sh
2025-10-22 18:33:23 +02:00

13 líneas
265 B
Bash

#!/bin/bash
# Entrypoint script for Discord container
# Wait for X11 socket to be available
while [ ! -S /tmp/.X11-unix/X${DISPLAY#*:} ]; do
echo "Waiting for X11 socket..."
sleep 1
done
echo "Starting Discord..."
exec /usr/bin/discord --no-sandbox "$@"