deploy
All checks were successful
Deploy / build (push) Successful in 24s

This commit is contained in:
Круглицкий Никита Витальевич 2025-11-21 08:39:46 +06:00
parent 1fe53578d4
commit 972a9bf8fb
2 changed files with 5 additions and 4 deletions

View File

@ -33,8 +33,9 @@ jobs:
--name bpmn-api \
--network traefik \
--label "traefik.enable=true" \
--label "traefik.http.routers.bpmn-api.rule=Host(\`zxc.koptilnya.xyz\`)" \
--label "traefik.http.routers.bpmn-api.rule=Host(\`api.koptilnya.xyz\`) && PathPrefix(\`/bpmn\`)" \
--label "traefik.http.middlewares.bpmn-api.stripprefix.prefixes=/bpmn" \
--label "traefik.http.routers.bpmn-api.entrypoints=websecure" \
--label "traefik.http.routers.bpmn-api.tls.certresolver=myresolver" \
--label "traefik.http.services.bpmn-api.loadbalancer.server.port=1234" \
--label "traefik.http.services.bpmn-api.loadbalancer.server.port=80" \
bpmn-api:latest

View File

@ -7,7 +7,7 @@ COPY package*.json ./
USER node
RUN yarn install
COPY --chown=node:node . .
#ENV PORT=80
EXPOSE 1234
ENV PORT=80
EXPOSE 80
CMD [ "yarn", "start" ]