Split build directory from docker-compose related files
Files related with building distribution images now have it's own directory. Files for development using docker-compose are now placed in .docker-compose directory as they are non-essentials.
This commit is contained in:
parent
d7ec6aee4d
commit
961711b34b
31
build/standalone/rr.Dockerfile
Normal file
31
build/standalone/rr.Dockerfile
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
ARG COJEDZIE_VER=latest
|
||||||
|
|
||||||
|
FROM cojedzie/api:${COJEDZIE_VER}-rr
|
||||||
|
|
||||||
|
RUN apk add supervisor && \
|
||||||
|
{ \
|
||||||
|
echo '[supervisord]'; \
|
||||||
|
echo 'nodaemon=true'; \
|
||||||
|
echo ; \
|
||||||
|
echo '[program:roadrunner]'; \
|
||||||
|
echo 'command=rr serve'; \
|
||||||
|
echo 'startsecs=0'; \
|
||||||
|
echo 'start=true'; \
|
||||||
|
echo 'autorestart=true'; \
|
||||||
|
echo 'stdout_logfile=/dev/stdout'; \
|
||||||
|
echo 'stderr_logfile=/dev/stderr'; \
|
||||||
|
echo 'stdout_logfile_maxbytes=0'; \
|
||||||
|
echo 'stderr_logfile_maxbytes=0'; \
|
||||||
|
echo ; \
|
||||||
|
echo '[program:messenger-consumer]'; \
|
||||||
|
echo 'command=php /var/www/bin/console messenger:consume main -vv --time-limit=86400 --limit=10'; \
|
||||||
|
echo 'startsecs=0'; \
|
||||||
|
echo 'start=true'; \
|
||||||
|
echo 'autorestart=true'; \
|
||||||
|
echo 'stdout_logfile=/dev/stdout'; \
|
||||||
|
echo 'stderr_logfile=/dev/stderr'; \
|
||||||
|
echo 'stdout_logfile_maxbytes=0'; \
|
||||||
|
echo 'stderr_logfile_maxbytes=0'; \
|
||||||
|
} | tee /etc/supervisord.conf;
|
||||||
|
|
||||||
|
CMD ["./bin/docker-init.sh", "supervisord", "-c", "/etc/supervisord.conf"]
|
@ -5,22 +5,6 @@ LABEL maintainer="Kacper Donat <kacper@kadet.net>"
|
|||||||
COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/
|
COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/
|
||||||
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
|
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
|
||||||
|
|
||||||
RUN apk add supervisor && \
|
|
||||||
{ \
|
|
||||||
echo '[supervisord]'; \
|
|
||||||
echo 'nodaemon=true'; \
|
|
||||||
echo ; \
|
|
||||||
echo '[program:messenger-consumer]'; \
|
|
||||||
echo 'command=php /var/www/bin/console messenger:consume main -vv --time-limit=86400 --limit=10'; \
|
|
||||||
echo 'startsecs=0'; \
|
|
||||||
echo 'start=true'; \
|
|
||||||
echo 'autorestart=true'; \
|
|
||||||
echo 'stdout_logfile=/dev/stdout'; \
|
|
||||||
echo 'stderr_logfile=/dev/stderr'; \
|
|
||||||
echo 'stdout_logfile_maxbytes=0'; \
|
|
||||||
echo 'stderr_logfile_maxbytes=0'; \
|
|
||||||
} | tee /etc/supervisord.conf;
|
|
||||||
|
|
||||||
WORKDIR /var/www
|
WORKDIR /var/www
|
||||||
|
|
||||||
RUN install-php-extensions bcmath intl opcache zip sockets;
|
RUN install-php-extensions bcmath intl opcache zip sockets;
|
||||||
@ -42,4 +26,20 @@ ENV PATH=$PATH:/var/www/bin
|
|||||||
|
|
||||||
RUN composer run-script post-install-cmd
|
RUN composer run-script post-install-cmd
|
||||||
|
|
||||||
|
RUN apk add supervisor && \
|
||||||
|
{ \
|
||||||
|
echo '[supervisord]'; \
|
||||||
|
echo 'nodaemon=true'; \
|
||||||
|
echo ; \
|
||||||
|
echo '[program:messenger-consumer]'; \
|
||||||
|
echo 'command=php /var/www/bin/console messenger:consume main -vv --time-limit=86400 --limit=10'; \
|
||||||
|
echo 'startsecs=0'; \
|
||||||
|
echo 'start=true'; \
|
||||||
|
echo 'autorestart=true'; \
|
||||||
|
echo 'stdout_logfile=/dev/stdout'; \
|
||||||
|
echo 'stderr_logfile=/dev/stderr'; \
|
||||||
|
echo 'stdout_logfile_maxbytes=0'; \
|
||||||
|
echo 'stderr_logfile_maxbytes=0'; \
|
||||||
|
} | tee /etc/supervisord.conf;
|
||||||
|
|
||||||
CMD ["supervisord", "-c", "/etc/supervisord.conf"]
|
CMD ["supervisord", "-c", "/etc/supervisord.conf"]
|
@ -8,17 +8,17 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- ./front:/var/www/front:cached
|
- ./front:/var/www/front:cached
|
||||||
- ./api:/var/www/api:cached
|
- ./api:/var/www/api:cached
|
||||||
- ./docker/nginx/cojedzie.conf:/etc/nginx/conf.d/cojedzie.conf
|
- .docker-compose/nginx/cojedzie.conf:/etc/nginx/conf.d/cojedzie.conf
|
||||||
|
|
||||||
api:
|
api:
|
||||||
build:
|
build:
|
||||||
context: ./api
|
context: ./api
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
env_file:
|
env_file:
|
||||||
- ./docker/api/.env
|
- .docker-compose/api/.env
|
||||||
volumes:
|
volumes:
|
||||||
- ./api:/var/www:cached
|
- ./api:/var/www:cached
|
||||||
- ./docker/api/log.conf:/usr/local/etc/php-fpm.d/zz-log.conf
|
- .docker-compose/api/log.conf:/usr/local/etc/php-fpm.d/zz-log.conf
|
||||||
|
|
||||||
frontend:
|
frontend:
|
||||||
image: node:15.2.1
|
image: node:15.2.1
|
||||||
|
@ -1,2 +0,0 @@
|
|||||||
[supervisord]
|
|
||||||
nodaemon=true
|
|
Loading…
Reference in New Issue
Block a user