You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Playload: v3.0.0-beta.104
## Dockerfile
FROM node:20.13.1-alpine3.19 AS base
FROM base AS builder
WORKDIR /app
RUN apk add git bash
EXPOSE 3000
CMD ["sleep", "infinity"]
## docker-compose.yml
services:
app:
image: "${IMAGE_NAME}:${IMAGE_TAG}"
container_name: ${CONTAINER_NAME}-${APP_ENV}-app
ports:
- "3001:3000"
volumes:
- ./:/app
networks:
- network
depends_on:
- mongo
mongo:
image: "mongo:7.0"
container_name: ${CONTAINER_NAME}-${APP_ENV}-mongo
ports:
- "27017:27017"
command:
- --storageEngine=wiredTiger
volumes:
- ./.storage/mongo:/data/db
networks:
- network
networks:
network:
driver: bridge
Describe the Bug
When I changed host port from 3000 to 30001.
I got an issue can not update/create new page collection with web template.
Reproduction Steps
Step 1: Change docker-compose.yml payload serivce payload to
ports:
- "3001:3000"
Step 2: npm run dev
Step 3: go to the http://localhost:3001/admin/collections/pages/
Step 4: Try update any page collection we can got an error message.
Adapters and Plugins
db-mongodb
The text was updated successfully, but these errors were encountered:
Link to reproduction
https://www.loom.com/share/98cfdc252c27464487d15efb2ab7fe1a
Environment Info
Describe the Bug
When I changed host port from 3000 to 30001.
I got an issue can not update/create new page collection with web template.
Reproduction Steps
Step 1: Change docker-compose.yml payload serivce payload to
ports:
- "3001:3000"
Step 2: npm run dev
Step 3: go to the http://localhost:3001/admin/collections/pages/
Step 4: Try update any page collection we can got an error message.
Adapters and Plugins
db-mongodb
The text was updated successfully, but these errors were encountered: