13 líneas
257 B
Bash
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 "$@"
|