Skip to content

Commit e8976da

Browse files
committed
Use Redmine 5.x
1 parent 7097b7e commit e8976da

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ Docker, you can do so with ease.
122122

123123
* Clone the code repository.
124124
```
125-
git clone --branch 4.x [email protected]:jigarius/toggl2redmine.git
125+
# Replace x.y with a real branch name, e.g. 5.x
126+
git clone --branch x.y [email protected]:jigarius/toggl2redmine.git
126127
cd toggl2redmine
127128
```
128129
* Prepare docker containers.
@@ -157,7 +158,7 @@ your password or test Toggl 2 Redmine with more than one user accounts.
157158
158159
* Thanks [Evolving Web](https://evolvingweb.ca/) for funding the initial
159160
development of this plugin.
160-
* Thanks [Jigar Mehta (Jigarius)](https://jigarius.com/about) (that's me)
161+
* Thanks [Jigarius](https://jigarius.com/about) (that's me)
161162
for spending many evenings and weekends to make this plugin possible.
162163
* Thanks [JetBrains](https://jetbrains.com/) for their Open Source License,
163-
without which development would have been very difficult
164+
without which development would have been very difficult.

docker-compose.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
version: '3.1'
22
services:
33
redmine:
4-
image: redmine:4.x-toggl2redmine
5-
container_name: t2r-4x-appserver
4+
image: redmine:5.x-toggl2redmine
5+
container_name: t2r-5x-appserver
66
platform: linux/x86_64
77
hostname: appserver
88
build: .docker/redmine
@@ -27,7 +27,7 @@ services:
2727
- ./.docker/redmine/additional_environment.rb:/usr/src/redmine/config/additional_environment.rb
2828
mysql:
2929
image: mariadb:10.6
30-
container_name: t2r-4x-mysql
30+
container_name: t2r-5x-mysql
3131
hostname: mysql
3232
environment:
3333
MYSQL_ROOT_PASSWORD: root
@@ -40,7 +40,7 @@ services:
4040
- ./.docker/mysql/init:/docker-entrypoint-initdb.d
4141
node:
4242
image: node:16.x-toggl2redmine
43-
container_name: t2r-4x-node
43+
container_name: t2r-5x-node
4444
platform: linux/x86_64
4545
hostname: node
4646
build: .docker/node
@@ -49,7 +49,7 @@ services:
4949
- .:/app
5050
mailhog:
5151
image: mailhog/mailhog:v1.0.0
52-
container_name: t2r-4x-mailhog
52+
container_name: t2r-5x-mailhog
5353
platform: linux/x86_64
5454
hostname: mailhog
5555
ports:

0 commit comments

Comments
 (0)