-
-
Save flammable/2f5d9d8235fded4190af04de3440d38c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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