mirror of
https://github.com/OpenFusionProject/scripts.git
synced 2024-11-13 02:40:04 +00:00
13 lines
219 B
YAML
13 lines
219 B
YAML
|
# Uses default credentials
|
||
|
version: '3.1'
|
||
|
|
||
|
services:
|
||
|
db:
|
||
|
image: mysql:5.5.42
|
||
|
restart: always
|
||
|
ports:
|
||
|
- 3306:3306
|
||
|
environment:
|
||
|
MYSQL_ROOT_PASSWORD: mypassword
|
||
|
MYSQL_DATABASE: tabledata
|