2017-03-14 15:05:22 +01:00
|
|
|
#
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
# Image Setup
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# To take a look at the'php-worker' base Image, visit its DockerHub page
|
|
|
|
# https://hub.docker.com/r/nielsvdoorn/laravel-supervisor/
|
|
|
|
#
|
|
|
|
|
|
|
|
FROM nielsvdoorn/laravel-supervisor
|
|
|
|
|
|
|
|
#
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
# Optional Supervisord Configuration
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Modify the ./supervisor.conf file to match your App's requirements.
|
|
|
|
# Make sure you rebuild your container with every change.
|
|
|
|
#
|
|
|
|
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
|
|
|
|
|
|
|
#
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
# Optional Software's Installation
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# If you need to modify this image, feel free to do it right here.
|
|
|
|
#
|
|
|
|
# -- Your awesome modifications go here -- #
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
# Final Touch
|
|
|
|
#--------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
|
|
|
|
RUN rm -r /var/lib/apt/lists/*
|
2017-03-17 01:03:04 +01:00
|
|
|
WORKDIR /etc/supervisor/conf.d/
|