arrpc
Quick 'n' dirty docker image and compose file for running arrpc.
Usage
Via Docker Compose
# Clone the repo and cd
git clone https://git.rb9.xyz/docker/arrpc.git
cd arrpc
# Set up the environment. This command will set the directory that discord's IPC socket goes into.
echo XDG_RUNTIME_DIR=$XDG_RUNTIME_DIR > ./.env
# Start arrpc
docker compose up -d
Via Docker run
# Clone the repo and cd
git clone https://git.rb9.xyz/docker/arrpc.git
cd arrpc
# Build the image
docker build -t arrpc .
# Run the container
docker run -d \
-e XDG_RUNTIME_DIR=$XDG_RUNTIME_DIR \
-v $XDG_RUNTIME_DIR:$XDG_RUNTIME_DIR \
-p 1337:1337 -p 6463:6463 \
arrpc