We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
以下是我的compose配置
version: '3.3' services: master: image: docker.1panel.dev/crawlabteam/crawlab:latest container_name: crawlab_panel restart: always environment: CRAWLAB_SERVER_MASTER: "Y" CRAWLAB_MONGO_HOST: "mongo" ports: - "7777:8080" depends_on: - mongo mongo: image: docker.1panel.dev/mongo:latest restart: always ports: - "27003:27003"
求教如何配置为本地mongo,不要再开一个容器
The text was updated successfully, but these errors were encountered:
可以参考如下: version: '3.3' services: master: image: crawlabteam/crawlab container_name: crawlab_master restart: always environment: CRAWLAB_NODE_MASTER: "Y" CRAWLAB_MONGO_HOST: "192.168.29.13" CRAWLAB_MONGO_PORT: "27017" CRAWLAB_MONGO_DB: "crawlab"
Sorry, something went wrong.
No branches or pull requests
以下是我的compose配置
version: '3.3'
services:
master:
image: docker.1panel.dev/crawlabteam/crawlab:latest
container_name: crawlab_panel
restart: always
environment:
CRAWLAB_SERVER_MASTER: "Y"
CRAWLAB_MONGO_HOST: "mongo"
ports:
- "7777:8080"
depends_on:
- mongo
mongo:
image: docker.1panel.dev/mongo:latest
restart: always
ports:
- "27003:27003"
求教如何配置为本地mongo,不要再开一个容器
The text was updated successfully, but these errors were encountered: