mirror of
https://github.com/jimeh/Dockerfiles.git
synced 2026-02-19 07:56:41 +00:00
17 lines
293 B
YAML
17 lines
293 B
YAML
version: "2"
|
|
services:
|
|
mysql:
|
|
image: mysql
|
|
container_name: mysql
|
|
restart: always
|
|
network_mode: bridge
|
|
ports:
|
|
- "127.0.0.1:3306:3306"
|
|
volumes:
|
|
- data:/var/lib/mysql
|
|
environment:
|
|
- MYSQL_ALLOW_EMPTY_PASSWORD=yes
|
|
volumes:
|
|
data:
|
|
driver: local
|