-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (38 loc) · 829 Bytes
/
docker-compose.yml
File metadata and controls
38 lines (38 loc) · 829 Bytes
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
version: '3'
services:
user-app:
image: haridevelops/finalversionmoviecruiser:backendauth1-image
restart: always
network_mode: host
ports:
- 8089:8089
expose:
- 8089
depends_on:
- movie-mysql
movie-app:
image: haridevelops/finalversionmoviecruiser:backend-image
restart: always
network_mode: host
ports:
- 8082:8082
expose:
- 8082
depends_on:
- movie-mysql
movie-mysql:
image: mysql:5.5
network_mode: host
ports:
- 3306:3306
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_USER: app_root
MYSQL_PASSWORD: root123
MYSQL_DATABASE: moviedb
angular:
image: haridevelops/finalversionmoviecruiser:angulardist-image
network_mode: host
container_name: angular-docker
ports:
- 4200:4200