Skip to content
Snippets Groups Projects
Select Git revision
  • 04fc10fd55347d32cd3ced4dbaad38da7dbd7726
  • main default protected
2 results

arrpc

  • Clone with SSH
  • Clone with HTTPS
  • TheJoeCoder's avatar
    TheJoeCoder authored
    04fc10fd
    History
    Name Last commit Last update
    .gitignore
    Dockerfile
    README.md
    docker-compose.yml

    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