Skip to content

Commit 3aca1eb

Browse files
committed
Fixed labeling mariadb 10.11
1 parent c30530b commit 3aca1eb

6 files changed

Lines changed: 9 additions & 13 deletions

File tree

.github/workflows/camunda.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ jobs:
2020
WORKERS: 1
2121

2222
services:
23-
mdb106:
23+
mdb1011:
2424
image: mariadb:10.11
2525
ports:
2626
- 3306:3306
2727
env:
2828
MYSQL_DATABASE: cws_dev
2929
MYSQL_ROOT_PASSWORD: adminpw
3030
options: >-
31-
--name mdb106
31+
--name mdb1011
3232
3333
steps:
3434
- uses: actions/checkout@v4
@@ -241,15 +241,15 @@ jobs:
241241
WORKERS: 2
242242

243243
services:
244-
mdb106:
244+
mdb1011:
245245
image: mariadb:10.11
246246
ports:
247247
- 3306:3306
248248
env:
249249
MYSQL_DATABASE: cws_dev
250250
MYSQL_ROOT_PASSWORD: adminpw
251251
options: >-
252-
--name mdb106
252+
--name mdb1011
253253
254254
steps:
255255
- uses: actions/checkout@v4

.github/workflows/ldap.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
WORKERS: 1
1818

1919
services:
20-
mdb106:
20+
mdb1011:
2121
image: mariadb:10.11
2222
ports:
2323
- 3306:3306
2424
env:
2525
MYSQL_DATABASE: cws_dev
2626
MYSQL_ROOT_PASSWORD: adminpw
2727
options: >-
28-
--name mdb106
28+
--name mdb1011
2929
3030
steps:
3131
- uses: actions/checkout@v4

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ NASA-AMMOS Common Workflow Service (CWS) is an enterprise workflow management pl
2020

2121
#### Database Setup (MariaDB via Docker)
2222
```bash
23-
docker run -d -p 3306:3306 -e MYSQL_DATABASE=cws_dev -e MYSQL_ROOT_PASSWORD=YOUR_PASSWORD -e TZ=America/Los_Angeles --name mdb106 mariadb:10.6
23+
docker run -d -p 3306:3306 -e MYSQL_DATABASE=__DB_NAME__ -e MYSQL_ROOT_PASSWORD=__ROOT_PW__ -e TZ=America/Los_Angeles --name mdb1011 mariadb:10.11
2424
```
2525

2626
#### Elasticsearch Setup

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ See the [wiki](https://github.com/NASA-AMMOS/common-workflow-service/wiki) for m
5454

5555
Generate MariaDB Docker Container and Create Database Instance for CWS:
5656
```
57-
docker run -d -p 3306:3306 -e MYSQL_DATABASE=__DB_NAME__ -e MYSQL_ROOT_PASSWORD=__ROOT_PW__ -e TZ=America/Los_Angeles --name mdb106 mariadb:10.6
57+
docker run -d -p 3306:3306 -e MYSQL_DATABASE=__DB_NAME__ -e MYSQL_ROOT_PASSWORD=__ROOT_PW__ -e TZ=America/Los_Angeles --name mdb1011 mariadb:10.11
5858
```
5959

6060
Replace `__DB_NAME__` with your desired database name. <br />

create_server_dist.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -243,10 +243,6 @@ cp ${INSTALL_DIR}/launch_ls.sh ${CWS}
243243
print 'Copying Modeller scripts and libraries...'
244244
cp -R ${INSTALL_DIR}/modeler ${CWS}
245245

246-
print 'Copying Upgrade scripts...'
247-
cp -R ${INSTALL_DIR}/upgrade/upgrade_to_2.4.sh ${CWS}/upgrade
248-
cp -R ${INSTALL_DIR}/upgrade/README.md ${CWS}/upgrade
249-
250246
print 'Installing context.xml to Tomcat...'
251247
cp ${INSTALL_DIR}/context.xml ${CWS_TOMCAT_ROOT}/conf/context.xml
252248

install/docker/es-only/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88

99
To run use the command:
1010

11-
docker-compose up
11+
docker-compose up -d

0 commit comments

Comments
 (0)