brownster

Members
  • Posts

    19
  • Joined

  • Last visited

Converted

  • Gender
    Male

Recent Profile Visitors

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

brownster's Achievements

Noob

Noob (1/14)

0

Reputation

  1. Hello H20_King89 apologies not replying earlier. I have not been using freepbx for a while but noticed yesterday Dave Conroy (tiredofit) is still working on this docker which prompted me to see if the template was still applicable. Just compared the docker template at https://github.com/Brownster/docker-templates/blob/master/brownster/FreePBX-16v1.xml to make sure it was still correct. - looks OK Will give it a whirl tonight Others are using his docker, so you should have no issues getting it running, there are some known issues: (FROM TIREDOFIT GIT HUB PAGE) When installing Parking Lot or Feature Codes you sometimes get SQLSTATE[22001]: String data, right truncated: 1406 Data too long for column 'helptext' at row 1. To resolve login to your SQL server and issue this statement: alter table featurecodes modify column helptext varchar(500); If you find yourself needing to update the framework or core modules and experience issues, enter the container and run upgrade-core which will truncate the column and auto upgrade the core and framework modules.
  2. The docker installed OK for me the first time and was able to login. **edit Freepbx 14 docker image takes a while to run first time round ... start it and leave it. From the docker author Dave Conroy: I'm a couple revisions away from being fully comfortable with this (I haven't yet moved it in a production mode yet myself) due to my modifications to let it run on a single database as I've noticed not all of the UCP modules fully work yet but I am definitely getting there. Enjoy! More info on this docker can be found here: https://github.com/tiredofit/docker-freepbx
  3. There is now a FreePBX 14 xml template at the same place, this should give us persistence across container instances. Will test this later, https://github.com/Brownster/docker-templates/blob/master/brownster
  4. This one is not my docker, still not had time to do much with my docker file, only just finished moving the 14 storage drives form ntfs. But this is a starting point planning on forking this docker then put it on the latest phusion base, just wanted some phones up and running over Christmas. Any feedback is welcome as we can look to fix / improve if needed. I think also long term it may be better to set up the docker network to allow freepbx to have its own ip as described here that will also allow for vlans if your switch/router supports it Maybe i could create two xml's one for "local host IP" one for "homenet":
  5. I had a look around and there are more freepbx dockers out there so have taken a short cut to getting up and running on freepbx 13 with unraid. going to try mima84/docker-freepbx docker build. I knocked up a little xml so i could install through the unraid UI the container has persistence of data across container reboots but not across instances of the container. So if you modify the container once installed and a new container is created you will lose data. here is the location if anyone else would like to try https://github.com/Brownster/docker-templates/tree/master/brownster Thanks for this Docker goes to MicMay - mima84, https://hub.docker.com/r/mima84/docker-freepbx/ it is based on the docker image jmar71n_freepbx so thanks to Jason Martin https://hub.docker.com/r/jmar71n/freepbx/ Regards
  6. Hello, Fist off thanks Binhex for providing this docker, i have been able to setup most things without issue but i do have a problem with setting the sabnzbd ip address in the downloaders section. Every time i change it from local host to the ip address i hit test it comes back successful i exit go back in and it is back to local host this is stopping me being able to setup a connection to sabnzbd. Anyone any ideas? I have gone and directly change the settings file to the ip address but its not picked up in the web interface, if i restart the docker the settings file is changed back to local host. This happens on Bin Hex docker and linuxserver docker, so seems i may be doing something wrong? I don't think its permissions as all other settings remain persistent. Thanks Marc
  7. Thanks Johnnie changed the share from high water to most free, see if that helps it was set to split on top level (which would be film title folder
  8. rebooted again started array this time I can see the shares Would like to know what caused it.
  9. Booted back into Unraid and no shares in the web interface... how do i get the shares back with the data?
  10. Ran memtest for three passes no errors The drives aren't full, i think that error was more down to access to the drives
  11. Hello, Whilst copying some files over from a mounted unassigned drive to a share via command line cp command I started to get "unable to write disk" "disk full" messages. When checking the web interface all the shares i created have disappeared. Looking at the log it seems i have a hardware issue but cant tell if its a disk or a controller, could i possibly trouble someone with more knowledge than I to take a look at my log file? I suspect a reboot will bring the shares back but thought i would wait. Attached log and diagnostics file also a screen shot of the disks. Thanks Marc unraid log.txt tower-diagnostics-20171113-0527.zip
  12. Been offline for a long long while, Last week I fired up my Tower and now just migrating drives over to unraid (from flexraid) once this is done, i will look at this again with the latest version of freepbx. Hopefully i'll have an update in a couple of weeks. Is there a guide on creating the docker repo/xml for unraid?
  13. Ok so some success i now have freepbx running in a container on my laptop and it seems happy. I ran in to a couple of warnings when i first ran the container which were easy to resolve and i have put the steps i took on git hub, i will look into the reasons why i got those warnings and see if i can do anything about them. Apart from that i will do some actual testing with phones hopefully tomorrow. to give it a try run: sudo docker run --name freepbx -v /place/to/put/backup:/etc/freepbxbackup --net=host -d -t brownster/freepbx12021 changing /place/to/put/backup to something right for you. you will then have freepbx running on the same ip as your host machine. you can login via that ip and set the username and password. Word of warning in this image apache is listening on port 80 i will look at changing it to something else 8009 i will probably end up using unless that conflicts with another app?.
  14. will have a look at doing that i will do a bit more playing first mapping the freepbx config directory would be good to keep it out the container and probably a few other directories. ** update ** Decided not to map a load directories as most of the info is stored in sql, so at the moment i just mount one folder to allow easy backup of freepbx i have exposed ports 5060 80 and 10000-20000. Still trying to decide best RUN command to use but something like: sudo docker run --name freepbx -v /place/to/put/backup:/etc/freepbxbackup --publish-all=true -d -t brownster/freepbx12021 should work, it has taken all afternoon to upload the image to docker and will have to do it again as the current image on docker doesn't have port 80 exposed, although i can see asterisk is running OK so that's a start! Just running another build with all ports needed exposed. it will be tomorrow before i get chance to upload it, tbh if the upload time is anything to go on its probably quicker to build it form the docker file on github. @Squid is there an xml template i can use? Thanks Marc
  15. solved it, freepbx now builds from the docker file Any suggestions on how to make it more unraid friendly? https://github.com/Brownster/asterisk-freepbx/blob/master/Dockerfile thanks