mafen / playit-docker

12 stars 0 forks source link

This doesn't support M1 macs so if you're using them rebuild the image #2

Open Kadamitas opened 3 months ago

Kadamitas commented 3 months ago
  1. Clone the repository containing the Dockerfile and change directory into it Terminal

    git clone https://github.com/mafen/playit-docker.git
    cd playit-docker
  2. Rebuild the image Terminal

    docker build --platform linux/arm64/v8 -t playit-local .
  3. Make a new dockerfile pointing to the newly made image Terminal

    
    touch docker-compose.yml && echo 'version: "3.8"

services: playit: container_name: playit image: playit-local restart: unless-stopped ' > docker-compose.yml


4. Run the docker container
Terminal

docker compose up -d

mafen commented 3 months ago

mind testing if https://github.com/mafen/playit-docker/commit/aef5b844809f89a2eb5095f115ca300b6bbb8d8a fixed it as i dont have mac m1 to test on ?

mafen commented 3 months ago

@Kadamitas have you had a chance to test it yet?