Git-Repository to build Docker containerimage for Webtrees.
If you find this image helpfull, so you can see here how you can help:
- Send a pull request with your features and bug fixes
- Help users resolve their issues.
Before reporting your issue please try updating Docker to the latest version and check if it resolves the issue. Refer to the Docker installation guide for instructions.
If that recommendations do not help then report your issue along with the following information:
- Output of the
docker version
anddocker info
commands - The
docker run
command ordocker-compose.yml
used to start the image. Mask out the sensitive bits.
Automated builds of the image are available on Dockerhub
docker pull quadstingray/webtrees:2.1.20
Alternatively you can build the image yourself.
docker build . --tag 'quadstingray/webtrees:dev';
You should now be able to use the image simply by running
docker-compose up -d
You access the server on http://localhost:10088/. Choose mySQL for the database, enter webtrees-mysql for the database host, and port 3306. Username, password, and DB name are your choices.
Start Webtrees using:
docker run --publish 80:80 quadstingray/webtrees:2.1.20
Webtrees store his dat by default /var/www/html/data
. So for persistence of your data and database config, you should mount an external volume to that path.
Variable | Default Value | Informations |
---|---|---|
PHP_MAX_EXECUTION_TIME | "80" | PHP Script max execution time |
PHP_POST_MAX_SIZE | "265M" | Max size for post request |
PHP_UPLOAD_MAX_FILESIZE | "265M" | Max size of File Upload |
PHP_OTHER_CONFIG | "" | You can inject every php.ini value, e.g. track_errors = yes \n register_globals = off |