Install Redmine

Install Redmine

version: '3.1'

services:

  redmine:
    image: redmine
    restart: always
    ports:
      - 8080:3000
    environment:
      REDMINE_DB_MYSQL: db
      REDMINE_DB_PASSWORD: example

  db:
    image: mysql:5.7
    restart: always
    environment:
      MYSQL_ROOT_PASSWORD: example
      MYSQL_DATABASE: redmine
    • Related Articles

    • Steps to install Magento 2.2.6 in Kubernetes

      Step 1 : Install Magento and Create Ingress helm install --name magento-name --namespace magento-name -f /root/magento_helm/value.yaml stable/magento --version 3.3.0 Step 2 : Setup Crontab Make sure crontab is running. service cron start  Commands : ...
    • Basic Command For LAMP

      Find largest files find / -size +10M -ls                   Server size (use/available) df -h Basic Command https://www.fastwebhost.in/blog/putty-30-useful-putty-commands-for-beginners/ Basic Git Command ...
    • Installing Docker

      Installing Docker On Windows Minimul Requirement :  1. Windows 10 64bit 2. At least 4GB of RAM. Steps: 1. Download exe from  download.docker.com 2. Run the installer.   3. Start the docker.  More Information ...
    • CHANGE GITLAB RUNNER

      Required Details : - server architectures type [ x86, AMD64, ARM64, ARM, s390x, ppc64le ] - super user access [ sudo password ] SSH in server where you want to set git runner. Step 1) #download binary for your system Warning : Select binary as per ...
    • S3 : Upload & Downlond

      1. Install AWSCLI         apt-get install awscli 2. Configure AWS Account       aws configure 3. Upload on S3       aws s3 cp SOURCE s3://DEST       if you want to upload whole folder then using following command        aws s3 cp SOURCE ...