-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
130 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
*.tar.* | ||
*.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
FROM sameersbn/ubuntu:14.04.20170123 | ||
FROM sameersbn/ubuntu:14.04.20170724 | ||
MAINTAINER [email protected] | ||
|
||
ENV PHP_VERSION=7.0 \ | ||
INVOICEPLANE_VERSION=1.4.10 \ | ||
ENV PHP_VERSION=7.1 \ | ||
INVOICEPLANE_VERSION=1.5.4 \ | ||
INVOICEPLANE_USER=www-data \ | ||
INVOICEPLANE_INSTALL_DIR=/var/www/invoiceplane \ | ||
INVOICEPLANE_DATA_DIR=/var/lib/invoiceplane \ | ||
|
@@ -23,8 +23,6 @@ RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 14AA40EC0831756 | |
mysql-client nginx gettext-base git \ | ||
&& sed -i 's/^listen = .*/listen = 0.0.0.0:9000/' /etc/php/${PHP_VERSION}/fpm/pool.d/www.conf \ | ||
&& phpenmod -v ALL mcrypt \ | ||
&& wget -nv "https://getcomposer.org/composer.phar" -O /usr/local/bin/composer \ | ||
&& chmod +x /usr/local/bin/composer \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
COPY assets/build/ ${INVOICEPLANE_BUILD_DIR}/ | ||
|
@@ -40,4 +38,4 @@ WORKDIR ${INVOICEPLANE_INSTALL_DIR} | |
ENTRYPOINT ["/sbin/entrypoint.sh"] | ||
CMD ["app:invoiceplane"] | ||
|
||
EXPOSE 9000 | ||
EXPOSE 80/tcp 9000/tcp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.4.10-2 | ||
1.5.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<?php exit('No direct script access allowed'); ?> | ||
# InvoicePlane Configuration File | ||
|
||
# Set your URL without trailing slash here, e.g. http://your-domain.com | ||
# If you use a subdomain, use http://subdomain.your-domain.com | ||
# If you use a subfolder, use http://your-domain.com/subfolder | ||
IP_URL= | ||
|
||
# Having problems? Enable debug by changing the value to 'true' to enable advanced logging | ||
ENABLE_DEBUG=false | ||
|
||
# Set this setting to 'true' if you want to disable the setup for security purposes | ||
DISABLE_SETUP=false | ||
|
||
# To remove index.php from the URL, set this setting to 'true'. | ||
# Please notice the additional instructions in the htaccess file! | ||
REMOVE_INDEXPHP=false | ||
|
||
# These database settings are set during the initial setup | ||
DB_HOSTNAME= | ||
DB_USERNAME= | ||
DB_PASSWORD= | ||
DB_DATABASE= | ||
DB_PORT= | ||
|
||
# If you want to be logged out after closing your browser window, set this setting to 0 (ZERO). | ||
# The number represents the amount of minutes after that IP will automatically log out users, | ||
# the default is 10 days. | ||
SESS_EXPIRATION=864000 | ||
|
||
# Enable the deletion of invoices | ||
ENABLE_INVOICE_DELETION=false | ||
|
||
# Disable the read-only mode for invoices | ||
DISABLE_READ_ONLY=false | ||
|
||
## | ||
## DO NOT CHANGE ANY CONFIGURATION VALUES BELOW THIS LINE! | ||
## ======================================================= | ||
## | ||
|
||
# This key is automatically set after the first setup. Do not change it manually! | ||
ENCRYPTION_KEY= | ||
ENCRYPTION_CIPHER=AES-256 | ||
|
||
# Set to true after the initial setup | ||
SETUP_COMPLETED=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.