This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 'PHP CI' | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "*" ] | |
| jobs: | |
| validate-dependencies: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Schedule; | |
| use Symfony\Component\Scheduler\Attribute\AsSchedule; | |
| use Symfony\Component\Scheduler\RecurringMessage; | |
| use App\Message\ExampleMessage; | |
| #[AsSchedule('main')] | |
| class MainScheduler implements ScheduleProviderInterface |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3.9' | |
| services: | |
| server: | |
| build: . | |
| container_name: 'project_server' | |
| depends_on: | |
| - database | |
| volumes: | |
| - .:/var/www/project:delegated |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3.8' | |
| services: | |
| portainer: | |
| image: portainer/portainer-ce:2.13.1 | |
| container_name: portainer | |
| restart: unless-stopped | |
| security_opt: | |
| - no-new-privileges:true | |
| volumes: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3.9' | |
| services: | |
| server: | |
| build: . | |
| container_name: 'project_server' | |
| depends_on: | |
| - database | |
| volumes: | |
| - .:/var/www/project |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3.9' | |
| services: | |
| server: | |
| build: . | |
| container_name: 'project_server' | |
| depends_on: | |
| - database | |
| networks: | |
| - project-network |