mirror of
https://github.com/TracksApp/tracks.git
synced 2026-02-03 22:41:48 +01:00
Version 2.5.0
This commit is contained in:
parent
0e5da18b71
commit
998bfa4248
4 changed files with 52 additions and 7 deletions
|
|
@ -1,5 +1,26 @@
|
|||
# Upgrading Tracks
|
||||
## Upgrading from Tracks 2.4.2 to 2.5
|
||||
|
||||
## General upgrade instructions
|
||||
|
||||
* Remember to always backup your database before upgrading! Test before
|
||||
upgrading production environments.
|
||||
|
||||
* For information regarding installation see doc/installation.md.
|
||||
|
||||
* Make sure to run database migrations using one one of the following:
|
||||
```
|
||||
# For pure (Dockerless) installation:
|
||||
$ rake db:migrate
|
||||
|
||||
# For Docker Compose installation:
|
||||
$ bin/rake db:migrate
|
||||
|
||||
# For separate Docker container installation either one of:
|
||||
$ docker run --link mariadb:db --rm -t tracks bin/rake db:migrate
|
||||
$ docker run --link postgres:db --rm -t tracks bin/rake db:migrate
|
||||
```
|
||||
|
||||
## Upgrading from Tracks 2.4.2 to 2.5.0
|
||||
|
||||
* If you're using the Docker Compose environment and want to run the commands in
|
||||
the bin/ directory inside the container from the host system, add a .use-docker
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue