Docker installation steps for Redmine

Docker installation steps for Redmine

Download the image (optional step, if omitted, it will be automatically installed in steps 3 and 4)

docker pull docker.io/sameersbn/redmine
docker pull docker.io/sameersbn/postgresql

Start SQL

docker run --name=postgresql-redmine -d --env='DB_NAME=redmine_production' --env='DB_USER=redmine' --env='DB_PASS=password' --restart=always --volume=/srv/docker/redmine/postgresql:/var/lib/postgresql sameersbn/postgresql

Start Redmine

docker run --name=redmine -d --link=postgresql-redmine:postgresql --publish=10083:80 --env='REDMINE_PORT=10083' --restart=always --volume=/srv/docker/redmine/redmine:/home/redmine/data sameersbn/redmine

Content Extension

Install Redmine using Docker

Deploy the database container

Redmine relies on a database. We also use containers to deploy related databases. Here we can use PostgreSQL and MySQL databases, respectively, as follows

Command installation:

PostgreSQL

docker run -d --name some-postgres -e POSTGRES_PASSWORD=secret -e POSTGRES_USER=redmine postgres

MySQL

docker run -d --name some-mysql -e MYSQL_ROOT_PASSWORD=secret -e MYSQL_DATABASE=redmine mysql

The name and password in the command can be specified by yourself, which are the container name and database password respectively.

Deploy Redmine

The following command connects to the PostgresSQL database

docker run -d --name redmine -e REDMINE_DB_PASSWORD=secret -p 3000:3000 -v /my/own/datadir:/usr/src/redmine/files --link some-postgres:postgres redmine

At this point, you can access the redmine service on port 3000 of the local IP address.

You may also be interested in:
  • Use of Docker redmine project management tool

<<:  MySQL 5.6 decompressed version service cannot be started due to system error 1067

>>:  Vue uses the method in the reference library with source code

Recommend

How to get the real path of the current script in Linux

1. Get the real path of the current script: #!/bi...

How to export mysql query results to csv

To export MySQL query results to csv , you usuall...

Vue implements the method example of tab routing switching component

Preface This article introduces the use of vue-ro...

A complete tutorial on installing Ubuntu 20.04 using VMware virtual machine

Ubuntu is a relatively popular Linux desktop syst...

About the usage and precautions of promise in javascript (recommended)

1. Promise description Promise is a standard buil...

My CSS framework - base.css (reset browser default style)

Copy code The code is as follows: @charset "...

Nginx handles http request implementation process analysis

Nginx first decides which server{} block in the c...

How to support Webdings fonts in Firefox

Firefox, Opera and other browsers do not support W...

Specific use of Linux gcc command

01. Command Overview The gcc command uses the C/C...

Solve the problems encountered when installing MySQL 8.0 on Win10 system

The problems and solutions encountered when insta...

WeChat applet uses canvas to draw clocks

This article shares the specific code of using ca...

Summary of MySQL slow log practice

Slow log query function The main function of slow...

WeChat applet realizes the function of uploading pictures

This article example shares the specific code for...

Example of making XML online editor using js

Table of contents Preface The need for online XML...

Realize breadcrumb function based on vue-router's matched

This article mainly introduces the breadcrumb fun...