mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
17 lines
339 B
YAML
17 lines
339 B
YAML
version: "3.5"
|
|
|
|
services:
|
|
bw-db:
|
|
image: mysql:8.0
|
|
command: --default-authentication-plugin=mysql_native_password
|
|
environment:
|
|
- MYSQL_RANDOM_ROOT_PASSWORD=yes
|
|
- MYSQL_DATABASE=db
|
|
- MYSQL_USER=bunkerweb
|
|
- MYSQL_PASSWORD=secret
|
|
networks:
|
|
- bw-docker
|
|
|
|
networks:
|
|
bw-docker:
|
|
external: true
|