1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/zoneminder/docker-compose.yml

18 lines
356 B
YAML
Raw Normal View History

2016-07-05 12:37:51 +02:00
zoneminder:
image: vimagick/zoneminder
ports:
2016-07-18 07:39:20 +02:00
- "127.0.0.1:8080:80"
2016-07-05 12:37:51 +02:00
links:
- mysql
restart: always
mysql:
image: mysql
volumes:
2016-07-18 07:02:30 +02: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 12:37:51 +02:00
environment:
- MYSQL_ROOT_PASSWORD=root
restart: always