We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a40999 commit 1330c15Copy full SHA for 1330c15
.gitignore
@@ -1,3 +1,4 @@
1
+.env
2
data.sql
3
application.properties
4
HELP.md
compose.yaml
@@ -2,9 +2,9 @@ services:
mysql:
image: 'mysql:latest'
environment:
5
- - 'MYSQL_DATABASE=gcm'
6
- - 'MYSQL_ROOT_PASSWORD=verysecret'
7
- - 'MYSQL_USER=nilgil'
8
- - 'MYSQL_PASSWORD=secret'
+ - MYSQL_DATABASE=${MYSQL_DATABASE}
+ - MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
+ - MYSQL_USER=${MYSQL_USER}
+ - MYSQL_PASSWORD=${MYSQL_PASSWORD}
9
ports:
10
- '3306:3306'
0 commit comments