1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 22:08:39 +00:00
dockerfiles/zoneminder/docker-compose.yml

18 lines
356 B
YAML
Raw Normal View History

2016-07-05 10:37:51 +00:00
zoneminder:
image: vimagick/zoneminder
ports:
2016-07-18 05:39:20 +00:00
- "127.0.0.1:8080:80"
2016-07-05 10:37:51 +00:00
links:
- mysql
restart: always
mysql:
image: mysql
volumes:
2016-07-18 05:02:30 +00:00
- ./mysql/my.cnf:/etc/mysql/conf.d/my.cnf
- ./mysql:/docker-entrypoint-initdb.d
- /usr/share/zoneinfo/Asia/Shanghai:/etc/localtime
2016-07-05 10:37:51 +00:00
environment:
- MYSQL_ROOT_PASSWORD=root
restart: always