Skip to content

Commit

Permalink
fixed issue docker#420, set MySQL version, set compile to 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
spara committed Jul 30, 2018
1 parent 90b06dc commit 5749578
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions developer-tools/java-debugging/app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@
</dependency>
</dependencies>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<build>
<finalName>UserSignup</finalName>
Expand Down
2 changes: 1 addition & 1 deletion developer-tools/java-debugging/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ services:
- "8000:8000"
restart: always



Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mysql:latest
FROM mysql:5.7

# Copy the database initialize script:
# Contents of /docker-entrypoint-initdb.d are run on mysqld startup
Expand All @@ -8,4 +8,4 @@ ADD docker-entrypoint-initdb.d/ /docker-entrypoint-initdb.d/
# ENV MYSQL_ROOT_PASSWORD=my-secret-pw # Not defaulted for security reasons!
ENV MYSQL_DATABASE=dockercon2035
ENV MYSQL_USER=gordon
ENV MYSQL_PASSWORD=password
ENV MYSQL_PASSWORD=password

0 comments on commit 5749578

Please sign in to comment.