Files
docker-discord/entrypoint.sh
2025-10-23 19:29:34 +02:00

13 líneas
257 B
Bash

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