Skip to content

Commit

Permalink
Unbind ports
Browse files Browse the repository at this point in the history
  • Loading branch information
NickMous committed Aug 22, 2024
1 parent a625584 commit 2249e9d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ yarn-error.log
/.vscode
sitemap.xml
.DS_Store
/data
2 changes: 1 addition & 1 deletion compose.testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
target: dev
ports:
- 1501:80
- 22:22
- 0:22
depends_on:
db-testing:
condition: service_healthy
Expand Down
2 changes: 1 addition & 1 deletion compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
target: prod
ports:
- 1501:80
- 22:22
- 0:22
depends_on:
db:
condition: service_healthy
Expand Down
3 changes: 2 additions & 1 deletion database/factories/MediaFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
namespace Database\Factories;

use App\Models\Checkpoint;
use App\Models\Media;
use Illuminate\Database\Eloquent\Factories\Factory;

/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Media>
* @extends Factory<Media>
*/
class MediaFactory extends Factory
{
Expand Down

0 comments on commit 2249e9d

Please sign in to comment.