skip to Main Content

Fail install mongodb on Centos 7 with Package error

I try to install mongodb to Centos 7 server with PHP. I follow the install guide from https://www.php.net/manual/en/mongodb.installation.pecl.php But sudo pecl install mongodb show error message: WARNING: channel "pecl.php.net" has updated its protocols, use "pecl channel-update pecl.php.net" to update downloading…

VIEW QUESTION

Redis – My local volume for mongodb gets permission denied when running docker-compose up

Here is my docker-compose.yml version: "3.5" services: api: container_name: upvotocracy-api restart: always build: . env_file: .env ports: - "127.0.0.1:8537:8537" - "127.0.0.1:9228:9229" links: - mongo volumes: - ./index.js:/usr/src/app/index.js - ./.env:/usr/src/app/.env networks: - upvotocracy-network mongo: container_name: upvotocracy-mongo restart: always image: mongo:latest env_file:…

VIEW QUESTION
Back To Top
Search