diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json deleted file mode 100644 index bba013b7..00000000 --- a/.devcontainer/devcontainer.json +++ /dev/null @@ -1,34 +0,0 @@ -// For format details, see https://aka.ms/devcontainer.json. For config options, see the -// README at: https://github.com/microsoft/vscode-dev-containers/blob/main/containers/docker-from-docker-compose/.devcontainer/devcontainer.json -{ - "name": "MCPServer", - "dockerComposeFile": "docker-compose-local.yml", - "service": "mcp-server", - "runServices": ["mcp-server","db"], - - "workspaceFolder": "/modelcontextprotocol/servers", - - // Set *default* container specific settings.json values on container create. - "customizations": { - // Configure properties specific to VS Code. - "vscode": { - // Add the IDs of extensions you want installed when the container is created. - "extensions": [ - "dbaeumer.vscode-eslint", - "ms-azuretools.vscode-docker" - ] - } - }, - - // Use 'forwardPorts' to make a list of ports inside the container available locally. - //"forwardPorts": [3000], - - // "mounts": [ - // "source=/etc/hosts,target=/etc/hosts,type=bind,consistency=cached" - // ] - // Use 'postCreateCommand' to run commands after the container is created. - "postCreateCommand": "apt update && apt install -y git postgresql-client docker.io", - - // Comment out to connect as root instead. - "remoteUser": "root" -} diff --git a/.devcontainer/docker-compose-local.yml b/.devcontainer/docker-compose-local.yml deleted file mode 100644 index 1945bea8..00000000 --- a/.devcontainer/docker-compose-local.yml +++ /dev/null @@ -1,24 +0,0 @@ -version: '3.7' - -services: - mcp-server: - image: "node:22" - #command: ["host.docker.internal:1521/freepdb1"] - #build: - # context: .. - # dockerfile: src/oracle/Dockerfile - # platforms: - # - "linux/arm64" - command: tail -f /dev/null - environment: - - ORACLE_USER=hr - - ORACLE_PASSWORD=hr_2025 - volumes: - - ..:/modelcontextprotocol/servers - - /var/run/docker.sock:/var/run/docker.sock - db: - image: postgres:latest - environment: - POSTGRES_USER: hr - POSTGRES_PASSWORD: hr_2025 - POSTGRES_DB: hr \ No newline at end of file diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml deleted file mode 100644 index 077c46bc..00000000 --- a/.github/workflows/docker-image.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: ci - -on: - push: - branches: - - "main" - -jobs: - docker: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - name: Login to Docker Hub - uses: docker/login-action@v3 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - file: ./src/oracle/Dockerfile - platforms: linux/amd64,linux/arm64 - push: true - tags: mochoa/mcp-oracle:latest diff --git a/src/oracle/package.json b/src/oracle/package.json index cd2e28dd..10ade4d8 100644 --- a/src/oracle/package.json +++ b/src/oracle/package.json @@ -5,7 +5,7 @@ "license": "MIT", "author": "Anthropic, PBC (https://anthropic.com)", "homepage": "https://modelcontextprotocol.io", - "bugs": "https://github.com/marcelo-ochoa/servers/issues", + "bugs": "https://github.com/modelcontextprotocol/servers/issues", "type": "module", "bin": { "mcp-server-oracle": "dist/index.js"