forked from aslan/applicant-site
add gitignore docker system file
This commit is contained in:
parent
39b050ba83
commit
7f7d6a6a73
|
@ -35,11 +35,15 @@ class DatabaseSeeder extends Seeder
|
||||||
// $this->call([
|
// $this->call([
|
||||||
// AdmissionSeeder::class,
|
// AdmissionSeeder::class,
|
||||||
// DocumentSeeder::class,
|
// DocumentSeeder::class,
|
||||||
|
// ]);
|
||||||
|
|
||||||
|
// $this->call([
|
||||||
|
// FeedbackStatusSeeder::class,
|
||||||
|
// FeedbackSeeder::class,
|
||||||
// ]);
|
// ]);
|
||||||
|
|
||||||
$this->call([
|
$this->call([
|
||||||
FeedbackStatusSeeder::class,
|
NewsSeeder::class,
|
||||||
FeedbackSeeder::class,
|
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,13 +8,14 @@ services:
|
||||||
command: mysqld --default-authentication-plugin=mysql_native_password --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
|
command: mysqld --default-authentication-plugin=mysql_native_password --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
|
||||||
environment:
|
environment:
|
||||||
MYSQL_ROOT_PASSWORD: root
|
MYSQL_ROOT_PASSWORD: root
|
||||||
MYSQL_DATABASE: sandbox
|
MYSQL_DATABASE: laravel
|
||||||
# MYSQL_USER: sandbox_user
|
# MYSQL_USER: laravel
|
||||||
# MYSQL_PASSWORD: passpass
|
# MYSQL_PASSWORD: laravellaravel
|
||||||
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
|
# MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
|
||||||
ports:
|
ports:
|
||||||
- '3306:3306'
|
- '3306:3306'
|
||||||
volumes:
|
volumes:
|
||||||
- './docker/db/data:/var/lib/mysql'
|
- './docker/db/data:/var/lib/mysql'
|
||||||
- './docker/db/my.cnf:/etc/mysql/conf.d/my.cnf'
|
- './docker/db/my.cnf:/etc/mysql/conf.d/my.cnf'
|
||||||
- './docker/db/sql:/docker-entrypoint-initdb.d'
|
- './docker/db/sql:/docker-entrypoint-initdb.d'
|
||||||
|
- './docker/tabit:/home'
|
||||||
|
|
Loading…
Reference in New Issue