Skip to content

Instantly share code, notes, and snippets.

@mroger
Created July 19, 2018 00:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mroger/98d9794871cc368dd650d2ebfb9e7dd8 to your computer and use it in GitHub Desktop.
Save mroger/98d9794871cc368dd650d2ebfb9e7dd8 to your computer and use it in GitHub Desktop.
docker-compose file
version: '3'
services:
mysql:
image: mysql:5.7.22
ports:
- 3306:3306
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=TIMESHEET
liquibase:
build: .
image: ubuntu-jdk8-liquibase:latest
depends_on:
- mysql
network_mode: "host"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment