ottomated / CrewLink-server

Voice Relay server for CrewLink.
GNU General Public License v3.0
696 stars 451 forks source link

Server for ARM processors [Rpi4] #165

Open ProManiFest2122 opened 3 years ago

ProManiFest2122 commented 3 years ago

Just like in the title. Can you make version of server files (Docker) for ARM proccesors ?

Jasbris commented 3 years ago

Definitely would be a plus, however in the meantime I have successfully been running a CrewLink server on my Rpi4b running Ubuntu Server.

Zedifuu commented 3 years ago

You should just be able to --build it and docker will build from an environment compatible with arm, no ? I run mine through docker compose to make my life easier.

Here's my compose file:

version: '3'

services:
  crewlink:
    build: .
    container_name: crewlink
    ports:
      - 9736:9736
    environment:
      - TZ=${TZ}
      - ADDRESS=${URL}  #Specifies the server domain
      - NAME=${SERVNAME} #Specifies the server name
    restart: unless-stopped

.env

TZ="Europe/London"
URL="https://crewlink.mywebsite.gg" # This can also be http://[your-public-ip-here]:[your-port] or https:// if you're using SSL
SERVNAME="Mr Internet Person's Crewlink"

Mine Hides behind a reverse-proxy, but if you want crewlink to handle the https, have a look at this guys comment: https://github.com/ottomated/CrewLink-server/issues/102#issuecomment-755246390