Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Commit for Dev Comparisson #290

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 0 additions & 34 deletions .env.example

This file was deleted.

3 changes: 2 additions & 1 deletion docker/config/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
set -e


cron && php-fpm
#cron &&
php-fpm

8 changes: 4 additions & 4 deletions docker/config/php
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | APT_KEY_DONT_WARN_ON_DAN

WORKDIR /var/www

RUN apt-get update && apt-get -y install cron
# RUN apt-get update && apt-get -y install cron

COPY ./docker/config/tasks_cron /etc/cron.d/tasks_cron
RUN chmod 0644 /etc/cron.d/tasks_cron && chmod 0644 /etc/cron.d/tasks_cron
# COPY ./docker/config/tasks_cron /etc/cron.d/tasks_cron
# RUN chmod 0644 /etc/cron.d/tasks_cron && chmod 0644 /etc/cron.d/tasks_cron

RUN /usr/bin/crontab /etc/cron.d/tasks_cron
# RUN /usr/bin/crontab /etc/cron.d/tasks_cron

COPY ./docker/config/docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
Expand Down