Code Monkey home page Code Monkey logo

nutiop's Introduction

Nutiop

function prompt(question, callback) { let stdin = process.stdin, stdout = process.stdout

stdin.resume() stdout.write(question)

stdin.once('data', function (data) { callback(data.toString().trim()) }) } .wrap { filter: drop-shadow(0 0 10px gray); version: '3'

services: git-server: image: rockstorm/git-server container_name: git-server restart: unless-stopped

environment:
  # Password for the git user
  GIT_PASSWORD: 'LoLoLo123LoLoLo123'

  # Path where the file with the password for the git user will be
  # mounted in the container in order to replace the default one
  # GIT_PASSWORD_FILE: /run/secrets/git_password

  # Setting this variable creates a link in the git user directory
  # to access repositories without absolute paths
  # REPOSITORIES_HOME_LINK: /srv/git

  # Path where the SSH host keys will be mounted in the container
  # in order to replace the default keys
  # SSH_HOST_KEYS_PATH: /tmp/host-keys

  # Set specific UID and GID for the git user
  # GIT_USER_UID: 1001
  # GIT_USER_GID: 1001

volumes:
  # Folder with git repositories
  - git-repositories:/srv/git

  # File containing the SSH keys of clients that will be allowed
  # to use this service through a public key
  - ./.ssh/authorized_keys:/home/git/.ssh/authorized_keys

  # Configuration file for the OpenSSH daemon to use instead of
  # the one that is generated by default
  - ./sshd_config:/etc/ssh/sshd_config:ro

  # Disable interactive SSH login for the git user
  # - /executable/file:/home/git/git-shell-commands/no-interactive-login

ports:
  - '2222:22'

cgit: image: 'ankitrgadiya/cgit:debian-nginx' container_name: cgit volumes: - git-repositories:/git ports: - '80:80'

////

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.