Jump to content

dan003400

Members
  • Posts

    4
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

dan003400's Achievements

Newbie

Newbie (1/14)

  • First Post Rare
  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. We are trying to deploy to a hosting provider but we cant seem to get the server to bind to 0.0.0.0:80 when deploying there. This is causing their proxy to not pick up the service and expose it to the internet. We also noticed that there is a --config option for the pbxctrl executable but there is no documentation for this file, can this please be shared with us? Thanks,
  2. It looks like this was from ubuntu installation, we were able to bypass this by adding this to our Dockerfile: ARG DEBIAN_FRONTEND=noninteractive
  3. This prompt is happening when running the install-debian.sh script. I am not sure how we can skip this when we are trying to deploy this automatically without human intervention, can you supply a Dockerfile config that would work? Thanks
  4. We are looking to automate the setup process to easily deploy PBX servers but we are not able to get the servers to self initialize and install PBX because the new install-debian.sh script is stopping to ask: # Please select the geographic area in which you live. Subsequent configuration => => # questions will narrow this down by presenting a list of cities, representing => => # the time zones in which they are located. => => # 1. Africa 3. Antarctica 5. Arctic 7. Atlantic 9. Indian 11. US => => # 2. America 4. Australia 6. Asia 8. Europe 10. Pacific 12. Etc => => # Geographic area: Is there parameters or files that we can include to automatically preselect these options? Also, here is our Dockerfile (we are not using docker specifically, but our hosting provider uses Dockerfiles to init servers) FROM ubuntu RUN apt-get update RUN apt-get install wget -y RUN wget http://portal.vodia.com/downloads/pbx/install-debian.sh RUN chmod a+rx install-debian.sh RUN ./install-debian.sh CMD ["ps", "-C", "pbxctrl"] Thanks in advance!
×
×
  • Create New...