premier commit
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
sqldata
|
||||||
21
docker-compose.yaml
Normal file
21
docker-compose.yaml
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
services:
|
||||||
|
mariadb:
|
||||||
|
image: mariadb
|
||||||
|
environment:
|
||||||
|
MARIADB_USER: root
|
||||||
|
MARIADB_ROOT_PASSWORD: super_strong_password
|
||||||
|
MARIADB_DATABASE: laravel_db
|
||||||
|
volumes:
|
||||||
|
- ./sqldata:/var/lib/mysql
|
||||||
|
|
||||||
|
laravel:
|
||||||
|
image: bitnami/laravel
|
||||||
|
ports:
|
||||||
|
- "8080:8000"
|
||||||
|
environment:
|
||||||
|
LARAVEL_DATABASE_USER: root
|
||||||
|
LARAVEL_DATABASE_PASSWORD: super_strong_password
|
||||||
|
LARAVEL_DATABASE_NAME: laravel_db
|
||||||
|
volumes:
|
||||||
|
- ./laravel:/app
|
||||||
|
|
||||||
Reference in New Issue
Block a user