version: '3.2' | |
networks: | |
default: | |
driver: bridge | |
services: | |
Adminer: | |
container_name: Adminer | |
image: adminer | |
# https://hub.docker.com/_/adminer/ | |
ports: | |
- "3307:8080" | |
networks: | |
- default | |
restart: on-failure | |
MunkiReport: | |
container_name: MunkiReport | |
image: munkireport/munkireport-php:release-latest | |
# https://hub.docker.com/r/munkireport/munkireport-php/ | |
volumes: | |
- /volume1/docker/MunkiReport/config.php:/var/munkireport/config.php:ro | |
ports: | |
- "4443:80" | |
networks: | |
- default | |
restart: on-failure | |
depends_on: | |
- MySQL | |
MySQL: | |
container_name: MySQL | |
image: mysql:5.7 | |
# https://hub.docker.com/_/mysql/ | |
volumes: | |
- /volume1/docker/MySQL:/var/lib/mysql:rw | |
ports: | |
- "3306:3306" | |
environment: | |
- MYSQL_ROOT_PASSWORD=secretpassword | |
networks: | |
- default | |
restart: on-failure |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment