forked from hack-ms/Strike-Up
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
54 lines (52 loc) · 1.13 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
fiscaliza-api:
image: hitalos/laravel:latest
container_name: fiscaliza-api
ports:
- 86:80
volumes:
- ./api:/var/www
links:
- mongo
command:
- /bin/bash
- -c
- |
composer install
composer require jenssegers/mongodb
php artisan migrate
php artisan inicializar:banco
php artisan serve --port=80 --host=0.0.0.0
mongo:
image: mongo
container_name: mongo
restart: always
ports:
- 27018:27017
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: root
mongo-express:
image: mongo-express
container_name: fiscaliza-mongo-gerencial
restart: always
ports:
- 8089:8081
links:
- mongo
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: root
fiscaliza-front:
image: node:10
container_name: fiscaliza-front
ports:
- 9001:8080
volumes:
- ./front:/var/www
command:
- /bin/bash
- -c
- |
cd var/www/
npm i
npm run serve