Skip to content

Instantly share code, notes, and snippets.

@vluzrmos
Created August 2, 2019 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vluzrmos/54d874327333e86b46c6c91c0093a39a to your computer and use it in GitHub Desktop.
Save vluzrmos/54d874327333e86b46c6c91c0093a39a to your computer and use it in GitHub Desktop.
Docker-compose replace command
# ...
services:
# ...
service-name:
# ...
command: >
bash -c "
php artisan cache:clear &&
php artisan config:clear &&
php artisan route:clear &&
php artisan view:clear &&
php artisan optimize &&
chown www-data:www-data -R storage bootstrap/cache &&
/usr/local/bin/start"
# ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment