mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-10 04:19:24 +02:00
16 lines
243 B
YAML
16 lines
243 B
YAML
|
zoneminder:
|
||
|
image: vimagick/zoneminder
|
||
|
ports:
|
||
|
- "8080:80"
|
||
|
links:
|
||
|
- mysql
|
||
|
restart: always
|
||
|
|
||
|
mysql:
|
||
|
image: mysql
|
||
|
volumes:
|
||
|
- ./sql:/docker-entrypoint-initdb.d
|
||
|
environment:
|
||
|
- MYSQL_ROOT_PASSWORD=root
|
||
|
restart: always
|