Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Server for ARM processors [Rpi4] #165

Open
ProManiFest2122 opened this issue Jan 23, 2021 · 2 comments
Open

Server for ARM processors [Rpi4] #165

ProManiFest2122 opened this issue Jan 23, 2021 · 2 comments

Comments

@ProManiFest2122
Copy link

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

@Jasbris
Copy link

Jasbris commented Jan 25, 2021

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

@Zedifuu
Copy link

Zedifuu commented Feb 1, 2021

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:
#102 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants