4 # anuko_tt is a web application built as per Dockerfile specification.
7 image: anuko_timetracker:dev
8 container_name: anuko-timetracker
9 # Use localhost:8080 to connect to timetracker via browser.
13 # anuko_sql is a mariadb instance to which timetracker connects.
14 # Connect parameters are also specified in timetracker Dockerfile after
15 # creation of its configuration file. Specifically, we replace
16 # user name, password, service name (aka resolvable to IP server name
17 # where mariadb runs), and database name there from the defaults.
18 # These two sets of credentials must match for a successful connect.
20 image: "mariadb:latest"
21 container_name: anuko-sql
23 MYSQL_RANDOM_ROOT_PASSWORD: "yes"
24 MYSQL_DATABASE: timetracker
25 MYSQL_USER: anuko_user
26 MYSQL_PASSWORD: anuko_pw
28 - db-data:/var/lib/mysql