GithubHelp home page GithubHelp logo

Comments (2)

jazzdd86 avatar jazzdd86 commented on July 24, 2024

Hi,
I stumbled over this issue a few weeks ago, as I started using virtualbox and phpvirtualbox after 2 years not using it.

The use of "links:" is depricated, so I have to look into the whole configuration script and edit it the way it works again.

As workaround I use the direct conection to the vboxwebsrv as vboxwebsrv and phpvbox are in the same local network - meens the vboxwebsrv container starts the vboxwebsrv on the host machine and I am letting phpvbox connecting to that port (5678).

The myComputer or name is the display name used in the phpvbox UI to display the VBOX Server.

long story short, this works for me at this time:

version: '3'
services:
    vbox_http:
        container_name: vbox_http
        restart: always
        ports:
            - "80:80"
        environment: 
            ID_PORT_18083_TCP: "vboxwebsrvHostNameOrIP:5678"
            ID_NAME: "Name" #display name
            ID_USER: "vm" #vboxwebsrv user
            ID_PW: "secret" #vboxwebsrv pw
            CONF_browserRestrictFolders: "/data,/home,/usr/lib/virtualbox/"
        depends_on:
            - vbox_websrv
        image: jazzdd/phpvirtualbox

    vbox_websrv:
        container_name: vbox_websrv
        restart: always
        volumes:
            - "./ssh:/root/.ssh"
        environment:
            USE_KEY: 1
        image: jazzdd/vboxwebsrv
        command: secret@vboxwebsrvHostNameOrIP

Its in my todo for next few weeks, I will post here any updates

from phpvirtualbox.

jazzdd86 avatar jazzdd86 commented on July 24, 2024

Ok, I was able to update both images today.

Please consult the README for instructions on how to use docker-compose and the correct configuration for the vboxwebsrv image.

I hope it works for you now.

from phpvirtualbox.

Related Issues (13)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.