Docker
This commit is contained in:
parent
8b79ec5cc8
commit
c4c35a2ea3
|
@ -76,7 +76,18 @@ services:
|
||||||
- "3005"
|
- "3005"
|
||||||
ports:
|
ports:
|
||||||
- "3005:3005"
|
- "3005:3005"
|
||||||
|
print:
|
||||||
|
environment:
|
||||||
|
- NODE_ENV=${NODE_ENV}
|
||||||
|
container_name: "${BRANCH_NAME}-print"
|
||||||
|
image: "print:${TAG}"
|
||||||
|
build:
|
||||||
|
context: ./services
|
||||||
|
dockerfile: /print/Dockerfile
|
||||||
|
expose:
|
||||||
|
- "3006"
|
||||||
|
ports:
|
||||||
|
- "3006:3006"
|
||||||
nginx:
|
nginx:
|
||||||
container_name: "${BRANCH_NAME}-nginx"
|
container_name: "${BRANCH_NAME}-nginx"
|
||||||
image: "nginx:${TAG}"
|
image: "nginx:${TAG}"
|
||||||
|
@ -95,3 +106,4 @@ services:
|
||||||
- "mailer:${BRANCH_NAME}-mailer"
|
- "mailer:${BRANCH_NAME}-mailer"
|
||||||
- "production:${BRANCH_NAME}-production"
|
- "production:${BRANCH_NAME}-production"
|
||||||
- "route:${BRANCH_NAME}-route"
|
- "route:${BRANCH_NAME}-route"
|
||||||
|
- "print:${BRANCH_NAME}-print"
|
||||||
|
|
Loading…
Reference in New Issue