File tree Expand file tree Collapse file tree 3 files changed +31
-14
lines changed Expand file tree Collapse file tree 3 files changed +31
-14
lines changed Original file line number Diff line number Diff line change
1
+ # Change Log
2
+ All notable changes are kept in this file. All changes made should be added to the section called
3
+ ` Unreleased ` . Once a new release is made this file will be updated to create a new ` Unreleased `
4
+ section for the next release.
5
+
6
+ For more information about this file see also [ Keep a Changelog] ( http://keepachangelog.com/ ) .
7
+
8
+
9
+ ## [ 5.0.3] - 2018-09-28
10
+
11
+ ### Fixes
12
+
13
+ - #593 : Replaces references to gitter with references to slack.
14
+ - #598 : Fixes issue in docker where the entrypoint referenced a wrong URL to download the initial schema from.
15
+
16
+ ## [ 5.0.2] - 2018-08-09
17
+
18
+ ### Fixes
19
+ - Update to sprockets gem
20
+
21
+ ## [ 5.0.1] - 2018-08-08
22
+
23
+ ### Fixes
24
+ - Fixes fuzzy matching used in search queries
25
+
26
+ ## [ 5.0.0] - 2018-08-07
27
+
28
+ ### Fixes
29
+ - Major upgrade to rails 5, make sure to read documentation on how to upgrade.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ version: "3"
3
3
services :
4
4
# BETY rails frontend to the database
5
5
bety :
6
- image : pecan/bety:unicorn
6
+ image : pecan/bety:${BRANCH:-latest}
7
7
networks :
8
8
- bety
9
9
ports :
@@ -14,12 +14,6 @@ services:
14
14
depends_on :
15
15
- postgres
16
16
restart : unless-stopped
17
- deploy :
18
- mode : replicated
19
- restart_policy :
20
- condition : any
21
- placement :
22
- constraints : [node.role == manager]
23
17
24
18
# postgresql + postgis to hold all the data
25
19
postgres :
@@ -31,12 +25,6 @@ services:
31
25
volumes :
32
26
- postgres:/var/lib/postgresql/data
33
27
restart : unless-stopped
34
- deploy :
35
- mode : replicated
36
- restart_policy :
37
- condition : any
38
- placement :
39
- constraints : [node.role == worker]
40
28
41
29
networks :
42
30
bety :
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ case $1 in
6
6
echo " Create new database, initialized from all data."
7
7
psql -h postgres -p 5432 -U postgres -c " CREATE ROLE bety WITH LOGIN CREATEDB NOSUPERUSER NOCREATEROLE PASSWORD 'bety'"
8
8
psql -h postgres -p 5432 -U postgres -c " CREATE DATABASE bety WITH OWNER bety"
9
- ./load.bety.sh -a " postgres" -d " bety" -p " -h postgres -p 5432" -o bety -c -u -g -m ${LOCAL_SERVER} -r 0 -w https://ebi-forecast.igb.illinois.edu/pecan/dumpall /bety.tar.gz
9
+ ./load.bety.sh -a " postgres" -d " bety" -p " -h postgres -p 5432" -o bety -c -u -g -m ${LOCAL_SERVER} -r 0 -w https://ebi-forecast.igb.illinois.edu/pecan/dump/all /bety.tar.gz
10
10
;;
11
11
" sync" )
12
12
echo " Synchronize with servers ${REMOTE_SERVERS} "
You can’t perform that action at this time.
0 commit comments