Fix docker build issue

This commit is contained in:
Thilina Hasantha
2020-06-24 06:49:06 +02:00
parent 86b8345505
commit 0c5a505d9e
2 changed files with 1 additions and 1 deletions

View File

@@ -27,6 +27,5 @@ COPY ./docker/$EXE_ENV/config/config.php /var/www/html/app/config.php
COPY ./docker/worker/config/ice-cron /etc/crontabs/root COPY ./docker/worker/config/ice-cron /etc/crontabs/root
RUN rm /var/www/html/app/data/icehrm.log
CMD /usr/sbin/crond -f -l 8 CMD /usr/sbin/crond -f -l 8

View File

@@ -22,6 +22,7 @@ For Linux you need to install docker compose separately here [https://docs.docke
``` ```
$ git clone https://github.com/gamonoid/icehrm.git $ git clone https://github.com/gamonoid/icehrm.git
$ cd icehrm $ cd icehrm
$ touch app/data/icehrm.log (or create the file manually)
$ docker-compose -f docker-compose-prod.yaml up -d $ docker-compose -f docker-compose-prod.yaml up -d
``` ```