Skip to content
Snippets Groups Projects
Select Git revision
  • 488a600edd0e669076f7570c0913d1777096bb10
  • master default protected
  • pk
  • high-order-functions
4 results

my_highlight.theme

Blame
  • docker-compose.yml 412 B
    version: '3.1'
    
    services:
    
      mongo:
        image: mongo
        restart: always
        ports:
          - 27017:27017
        environment:
          MONGO_INITDB_ROOT_USERNAME: root
          MONGO_INITDB_ROOT_PASSWORD: example
          
        
      mongo-express:
        image: mongo-express
        restart: always
        ports:
          - 8081:8081
        environment:
          ME_CONFIG_MONGODB_ADMINUSERNAME: root
          ME_CONFIG_MONGODB_ADMINPASSWORD: example