add gitignore docker system file
Tests & Lint & Deploy to Railway / build (2.7.6, 20.x, 8.3) (push) Successful in 5m32s Details
Tests & Lint & Deploy to Railway / deploy (push) Successful in 36s Details

This commit is contained in:
aslan 2024-06-04 14:44:35 +03:00
parent 39b050ba83
commit 7f7d6a6a73
2 changed files with 11 additions and 6 deletions

View File

@ -35,11 +35,15 @@ class DatabaseSeeder extends Seeder
// $this->call([
// AdmissionSeeder::class,
// DocumentSeeder::class,
// ]);
// $this->call([
// FeedbackStatusSeeder::class,
// FeedbackSeeder::class,
// ]);
$this->call([
FeedbackStatusSeeder::class,
FeedbackSeeder::class,
NewsSeeder::class,
]);
}
}

View File

@ -8,13 +8,14 @@ services:
command: mysqld --default-authentication-plugin=mysql_native_password --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: sandbox
# MYSQL_USER: sandbox_user
# MYSQL_PASSWORD: passpass
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
MYSQL_DATABASE: laravel
# MYSQL_USER: laravel
# MYSQL_PASSWORD: laravellaravel
# MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
ports:
- '3306:3306'
volumes:
- './docker/db/data:/var/lib/mysql'
- './docker/db/my.cnf:/etc/mysql/conf.d/my.cnf'
- './docker/db/sql:/docker-entrypoint-initdb.d'
- './docker/tabit:/home'