mirror of
https://github.com/ShaYmez/FreeSTAR-Status-Engine.git
synced 2025-06-14 11:12:25 -04:00
24 lines
442 B
YAML
24 lines
442 B
YAML
version: '3'
|
|
|
|
networks:
|
|
status-db:
|
|
|
|
services:
|
|
server-status:
|
|
build: .
|
|
volumes:
|
|
- ./:/var/www/html
|
|
ports:
|
|
- 4000:80
|
|
networks:
|
|
- status-db
|
|
dbserver:
|
|
image: mysql
|
|
command: --default-authentication-plugin=mysql_native_password
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: e347h43cve89
|
|
MYSQL_DATABASE: server_status
|
|
volumes:
|
|
- ./database:/var/lib/mysql
|
|
networks:
|
|
- status-db |