services: mongo-express: image: mongo-express:latest container_name: mongo-express restart: always ports: - "8081:8081" environment: ME_CONFIG_MONGODB_SERVER: mongodb ME_CONFIG_MONGODB_PORT: 27017 ME_CONFIG_MONGODB_ADMINUSERNAME: admin ME_CONFIG_MONGODB_ADMINPASSWORD: password123 ME_CONFIG_BASICAUTH_USERNAME: admin ME_CONFIG_BASICAUTH_PASSWORD: Secret3465# networks: - duxiter_network networks: duxiter_network: external: true