/TODO : fix make init for docker

This commit is contained in:
axle 2025-07-29 22:56:17 -07:00
parent ace777b3f7
commit 0edd5d51a8
3 changed files with 10 additions and 23 deletions

View File

@ -32,7 +32,10 @@ RUN git clone https://github.com/zeldaret/mm.git
# remove dependancies
# add volume for rom endpoint
WORKDIR /mm/baseroms/n64-us
COPY ./baseroms/n64-us/baserom.z64 .
COPY ./baseroms/n64-us .
WORKDIR /mm/build/n64-us
COPY ./build/n64-us/mm-n64-us.z64 .
WORKDIR /mm
RUN pip install -r requirements.txt

View File

@ -98,7 +98,7 @@ cd mm
Place a copy of the US ROM inside the `baseroms/n64-us/` folder.
Rename the file to `mm-n64-us.z64`, `mm-n64-us.z64` or `mm-n64-us.z64`, depending on the original extension.
Rename the file to `baserom.z64`, `mm-n64-us.z64` or `mm-n64-us.z64`, depending on the original extension.
#### 4. Make and Build the ROM
@ -170,9 +170,9 @@ The disadvantage that the ordering of the terminal output is scrambled, so for d
"args": [
"run",
"--rm",
"-v", "${PWD}:/project",
"-w", "/project",
"ghcr.io/Axle-Bucamp/mm",
"-v", "${PWD}:/mm",
"-w", "/mm",
"mm",
"bash"
]
}

View File

@ -1,28 +1,12 @@
{
"mcpServers": {
"desktop-commander": {
"command": "npx",
"args": [
"-y",
"@wonderwhy-er/desktop-commander"
]
},
"playwright": {
"command": "npx",
"args": [
"-y",
"@executeautomation/playwright-mcp-server",
"--browser",
"chromium"
]
},
"zeldaret-mm": {
"command": "docker",
"args": [
"run",
"--rm",
"-v", "${PWD}:/project",
"-w", "/project",
"-v", "${PWD}:/mm",
"-w", "/mm",
"ghcr.io/zeldaret/mm",
"bash"
]