Skip to content

Commit

Permalink
fixed dos 2 unix issues
Browse files Browse the repository at this point in the history
  • Loading branch information
spara committed Apr 26, 2017
1 parent 33a74ba commit ca50fca
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion developer-tools/java-debugging/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "3"
version: "2"

services:

Expand Down Expand Up @@ -30,3 +30,4 @@ services:
- "8000:8000"
restart: always


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

# Copy the database initialize script:
# Contents of /docker-entrypoint-initdb.d are run on mysqld startup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ USE `dockercon2035`;

CREATE TABLE `user` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`dateOfBirth` datetime NOT NULL,
`dateOfBirth` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ,
`emailAddress` varchar(255) NOT NULL,
`firstName` varchar(255) NOT NULL,
`lastName` varchar(255) NOT NULL,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
#!/bin/sh

exec ${CATALINA_HOME}/bin/catalina.sh jpda run
exec ${CATALINA_HOME}/bin/catalina.sh jpda run

0 comments on commit ca50fca

Please sign in to comment.