Skip to content

Commit 9c7848d

Browse files
committed
all deploy .yml files use MySQL 5.7.18
1 parent 7f81d09 commit 9c7848d

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

docker-cloud.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ hg-db:
3232
- MYSQL_USER=admin
3333
expose:
3434
- '3306'
35-
image: 'mysql:5.7'
35+
image: 'htmlgraphic/mysql:5.7.18'
3636
tags:
3737
- testing
3838
volumes_from:
39-
- hg-db-data2
40-
hg-db-data2:
39+
- hg-db-data
40+
hg-db-data:
4141
image: 'busybox:latest'
4242
tags:
4343
- testing

docker-compose.local.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ web:
1313
env_file:
1414
- .env
1515
db:
16-
image: 'mysql:5.7'
16+
image: 'htmlgraphic/mysql:5.7.18'
1717
volumes_from:
18-
- db-data2
18+
- db-data
1919
ports:
2020
- "3306:3306"
2121
environment:
22-
- MYSQL_DATABASE=htmlgraphic
23-
- MYSQL_PASSWORD=new_password
2422
- MYSQL_ROOT_PASSWORD=new_passwordac
23+
- MYSQL_DATABASE=htmlgraphic
2524
- MYSQL_USER=admin
26-
db-data2:
25+
- MYSQL_PASSWORD=new_password
26+
db-data:
2727
image: 'busybox:latest'
2828
volumes:
2929
- "/var/lib/mysql"

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ hg-web:
1010
links:
1111
- "hg-db:mysql"
1212
hg-db:
13-
image: 'mysql:5.7'
13+
image: 'htmlgraphic/mysql:5.7.18'
1414
environment:
1515
- MYSQL_DATABASE=htmlgraphic
1616
- MYSQL_PASSWORD=new_password
@@ -19,8 +19,8 @@ hg-db:
1919
expose:
2020
- "3306"
2121
volumes_from:
22-
- db-data2
23-
db-data2:
22+
- db-data
23+
db-data:
2424
image: 'busybox:latest'
2525
volumes:
2626
- "/var/lib/mysql"

0 commit comments

Comments
 (0)