Skip to content

Commit 53277e8

Browse files
committed
Fix issue
1 parent e9105dc commit 53277e8

3 files changed

Lines changed: 5 additions & 1 deletion

File tree

ansible/roles/bluegreen/files/docker-compose.blue.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@ services:
99
ports:
1010
- "5000:5000"
1111
restart: always
12+
pull_policy: always
1213

1314
frontend:
1415
image: susheelthapaa/task-frontend:latest
1516
container_name: frontend_blue
1617
ports:
1718
- "3000:80"
1819
restart: always
20+
pull_policy: always

ansible/roles/bluegreen/files/docker-compose.green.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@ services:
99
ports:
1010
- "5001:5000"
1111
restart: always
12+
pull_policy: always
1213

1314
frontend:
1415
image: susheelthapaa/task-frontend:latest
1516
container_name: frontend_green
1617
ports:
1718
- "3001:80"
1819
restart: always
20+
pull_policy: always

frontend/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Task Manager</title>
6+
<title>Simple Task Manager App</title>
77

88
<link rel="stylesheet" href="styles.css" />
99
</head>

0 commit comments

Comments
 (0)