# mqttGo **Repository Path**: mosache/mqttGo ## Basic Information - **Project Name**: mqttGo - **Description**: mqtt server - **Primary Language**: Go - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-04-24 - **Last Updated**: 2022-05-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #mongodb dockerfile ```dockerfile version: '3.1' services: mongo: image: mongo restart: always ports: - 27017:27017 environment: MONGO_INITDB_ROOT_USERNAME: root MONGO_INITDB_ROOT_PASSWORD: 123456 command: --wiredTigerCacheSizeGB 2 volumes: - /Users/vurtne/docker/mongodb/data:/data/db mongo-express: image: mongo-express restart: always ports: - 8088:8081 environment: ME_CONFIG_MONGODB_ADMINUSERNAME: admin ME_CONFIG_MONGODB_ADMINPASSWORD: 123456 ```