mirror of
https://github.com/CFC-Servers/cfc_time.git
synced 2025-03-04 03:03:20 -05:00
18 lines
498 B
YAML
18 lines
498 B
YAML
version: "3.8"
|
|
services:
|
|
db:
|
|
image: mysql
|
|
restart: always
|
|
ports:
|
|
- $CFC_TIME_MYSQL_PORT:3306
|
|
volumes:
|
|
# Lets you put a .sql dump into ./sql_mount and have mysql pick it up on init
|
|
- ./sql_mount:/docker-entrypoint-initdb.d
|
|
- $CFC_TIME_MYSQL_DIR:/var/lib/mysql
|
|
environment:
|
|
MYSQL_DATABASE: cfc_time
|
|
MYSQL_USER: cfc_time
|
|
# Reads password from ./.env
|
|
MYSQL_PASSWORD: $CFC_TIME_MYSQL_PASSWORD
|
|
MYSQL_RANDOM_ROOT_PASSWORD: "yes"
|