File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ jobs:
125125
126126 services :
127127 db :
128- image : ghcr.io/ietf-tools/datatracker-db-pg :latest
128+ image : ghcr.io/ietf-tools/datatracker-db:latest
129129
130130 steps :
131131 - uses : actions/checkout@v3
@@ -227,7 +227,7 @@ jobs:
227227
228228 services :
229229 db :
230- image : ghcr.io/ietf-tools/datatracker-db-pg :latest
230+ image : ghcr.io/ietf-tools/datatracker-db:latest
231231
232232 steps :
233233 - uses : actions/checkout@v3
Original file line number Diff line number Diff line change 44 pull_request :
55 branches :
66 - ' main'
7- - ' feat/postgres'
87 paths :
98 - ' client/**'
109 - ' ietf/**'
2019
2120 services :
2221 db :
23- image : ghcr.io/ietf-tools/datatracker-db-pg :latest
22+ image : ghcr.io/ietf-tools/datatracker-db:latest
2423
2524 steps :
2625 - uses : actions/checkout@v3
Load diff This file was deleted.
Original file line number Diff line number Diff line change 88DATABASES = {
99 'default' : {
1010 'HOST' : '__DBHOST__' ,
11- 'PORT' : 3306 ,
12- 'NAME' : 'ietf_utf8 ' ,
13- 'ENGINE' : 'django.db.backends.mysql ' ,
11+ 'PORT' : 5432 ,
12+ 'NAME' : 'ietf ' ,
13+ 'ENGINE' : 'django.db.backends.postgresql_psycopg2 ' ,
1414 'USER' : 'django' ,
1515 'PASSWORD' : 'RkTkDPFnKpko' ,
16- 'OPTIONS' : {
17- 'sql_mode' : 'STRICT_TRANS_TABLES' ,
18- 'init_command' : 'SET storage_engine=InnoDB; SET names "utf8"' ,
19- },
2016 },
2117}
2218
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ docker compose -p dtdebug cp ../../. app:/__w/datatracker/datatracker/
1818echo " Run prepare script..."
1919docker compose -p dtdebug exec app chmod +x ./dev/tests/prepare.sh
2020docker compose -p dtdebug exec app sh ./dev/tests/prepare.sh
21- docker compose -p dtdebug exec app /usr/local/bin/wait-for db:3306 -- echo " DB ready"
21+ docker compose -p dtdebug exec app /usr/local/bin/wait-for db:5432 -- echo " DB ready"
2222echo " ================================================================="
2323echo " Launching zsh terminal:"
2424docker compose -p dtdebug exec app /bin/zsh
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ services:
1717 GITHUB_ACTIONS : ' true'
1818 HOME : /github/home
1919 db :
20- image : ghcr.io/ietf-tools/datatracker-db-pg :latest
20+ image : ghcr.io/ietf-tools/datatracker-db:latest
2121 restart : unless-stopped
2222 volumes :
2323 - postgresdb-data:/var/lib/postgresql/data
Load diff This file was deleted.
You can’t perform that action at this time.
0 commit comments