DockerFile for invoice ninja (https://www.invoiceninja.com/)
This image is based on php:7.2-fpm
official version.
To make your data persistent, you have to mount /var/www/app/public/logo
and /var/www/app/storage
.
To run it:
docker run -d
-e APP_ENV='production'
-e APP_DEBUG=0
-e APP_URL='http://IPADDRESS:8000'
-e APP_KEY='SomeRandom32CharacterLongAlphanumericString'
-e DB_TYPE='mysql'
-e DB_STRICT='false'
-e DB_HOST='localhost'
-e DB_DATABASE='ninja'
-e DB_USERNAME='ninja'
-e DB_PASSWORD='ninja'
-e TRUSTED_PROXIES='PROXYCIDR'
-e MAIL_DRIVER='smtp'
-e MAIL_PORT='587'
-e MAIL_ENCRYPTION='tls'
-e MAIL_HOST='smtp.example.com'
-e MAIL_USERNAME='[email protected]'
-e MAIL_FROM_ADDRESS='[email protected]'
-e MAIL_FROM_NAME='Sales Department'
-e MAIL_PASSWORD='SUPERSECRETEMAILPASSWORD'
-p '80:8000'
-p '443:443'
invoiceninja/invoiceninja
A list of environment variables can be found here
A pretty ready to use docker-compose configuration can be found into ./docker-compose
.
Rename .env.example
into .env
and change the environment's variable as needed.
The file assume that all your persistent data is mounted from /mnt/user/appdata/invoiceninja/
.
Once started the application should be accessible at http://IPADDRESS:8000/
Phantomjs doesn't work on linux alpine ariya/phantomjs#14186