Skip to content

Commit 0ea21e0

Browse files
authored
Merge pull request #764 from bcgov:fix/docker-compose-indentation
fix: docker-compose incorrect indentation
2 parents faf03fa + 7dbb866 commit 0ea21e0

File tree

1 file changed

+35
-35
lines changed

1 file changed

+35
-35
lines changed

docker-compose.yml

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -164,39 +164,39 @@ services:
164164
- /app/node_modules
165165
working_dir: "/app"
166166

167-
frontend:
168-
container_name: frontend
169-
entrypoint:
170-
- "sh"
171-
- "-c"
172-
- "npm i && npm run start"
173-
environment:
174-
- WATCHPACK_POLLING=true
175-
- NODE_ENV=development
176-
- BACKEND_URL=backend
177-
healthcheck:
178-
test: [ "CMD", "curl", "-f", "http://localhost:4000" ]
179-
interval: 1m30s
180-
timeout: 10s
181-
retries: 3
182-
start_period: 40s
183-
hostname: frontend
184-
image: node:14
185-
links:
186-
- graphqlgateway
187-
ports:
188-
- "4000:3000"
189-
- "35729:35729"
190-
volumes:
191-
- ./frontend:/app:z
192-
- /app/node_modules
193-
working_dir: "/app"
167+
frontend:
168+
container_name: frontend
169+
entrypoint:
170+
- "sh"
171+
- "-c"
172+
- "npm i && npm run start"
173+
environment:
174+
- WATCHPACK_POLLING=true
175+
- NODE_ENV=development
176+
- BACKEND_URL=backend
177+
healthcheck:
178+
test: [ "CMD", "curl", "-f", "http://localhost:4000" ]
179+
interval: 1m30s
180+
timeout: 10s
181+
retries: 3
182+
start_period: 40s
183+
hostname: frontend
184+
image: node:14
185+
links:
186+
- graphqlgateway
187+
ports:
188+
- "4000:3000"
189+
- "35729:35729"
190+
volumes:
191+
- ./frontend:/app:z
192+
- /app/node_modules
193+
working_dir: "/app"
194194

195-
userapi_doc:
196-
container_name: userapi_doc
197-
build:
198-
context: ./backend/documentation/users
199-
dockerfile: ./Dockerfile
200-
restart: always
201-
ports:
202-
- "4001:4001"
195+
userapi_doc:
196+
container_name: userapi_doc
197+
build:
198+
context: ./backend/documentation/users
199+
dockerfile: ./Dockerfile
200+
restart: always
201+
ports:
202+
- "4001:4001"

0 commit comments

Comments
 (0)