Compare commits
No commits in common. "24e3493995a5ed56b2770a7269086a32d0e800d6" and "e0651bd04cdfa78cc9a4cf949b7e1f9724e809b9" have entirely different histories.
24e3493995
...
e0651bd04c
|
@ -1,4 +1,2 @@
|
||||||
*.env
|
.env
|
||||||
env.*
|
|
||||||
|
|
||||||
sql-data/
|
sql-data/
|
|
@ -1,18 +1,22 @@
|
||||||
services:
|
services:
|
||||||
front-end:
|
front-end:
|
||||||
container_name: fleet-frontend
|
container_name: front-end
|
||||||
build: ./front-end/Dockerfile
|
build: ./front-end/Dockerfile
|
||||||
ports:
|
ports:
|
||||||
- 2500:80
|
- 2500:80
|
||||||
back-end:
|
back-end:
|
||||||
container_name: fleet-backend
|
container_name: back-end
|
||||||
build: ./back-end/Dockerfile
|
build: ./back-end/Dockerfile
|
||||||
ports:
|
ports:
|
||||||
- 2501:80
|
- 2501:80
|
||||||
db:
|
db:
|
||||||
container_name: fleet-db
|
container_name: fleet-db
|
||||||
image: mysql:9.0.1
|
image: mysql:9.0.1
|
||||||
env_file: ./mysql.env
|
environment:
|
||||||
|
MYSQL_DATABASE: 'fleetmanagement'
|
||||||
|
MYSQL_USER: {fleetmanagement-user}
|
||||||
|
MYSQL_PASSWORD: {fleetmanagement-pass}
|
||||||
|
MYSQL_ROOT_PASSWORD: {fleetmanagent-root}
|
||||||
ports:
|
ports:
|
||||||
- 3306:3306
|
- 3306:3306
|
||||||
volumes:
|
volumes:
|
|
@ -1,5 +1,5 @@
|
||||||
# Fleet Management Application
|
# Fleet Management Application
|
||||||
The Complete Application is developed to run inside of a docker container for deployment.
|
The Complete Application is developed to run inside of a docker container for development and deployment.
|
||||||
|
|
||||||
## Front-End
|
## Front-End
|
||||||
Front End is written using:
|
Front End is written using:
|
||||||
|
|
Loading…
Reference in New Issue