Snippet content copied to clipboard.
Are you sure to delete this snippet? No, don't delete
  1. image: php:8.1.18-fpm-buster
  2. pipelines:
  3. default:
  4. - step:
  5. script:
  6. - cat /etc/os-release
  7. - apt update && apt install -y php8.1-mysql
  8. - cd the-community-nurse-laravel-backend
  9. - php artisan migrate
  10. - php artisan serve &
  11. - php artisan test
  12. services:
  13. - mysql
  14. definitions:
  15. services:
  16. mysql:
  17. image: mysql
  18. variables:
  19. MYSQL_DATABASE: 'laravel'
  20. MYSQL_ROOT_PASSWORD: 'example'
  21. MYSQL_PORT: '3306'

Edit this Snippet