1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-24 08:52:31 +02:00
dockerfiles/moodle/docker-compose.yml

17 lines
262 B
YAML
Raw Normal View History

2015-12-28 08:55:31 +02:00
moodle:
image: vimagick/moodle
ports:
- "8000:80"
links:
- mysql
volumes:
- ./moodledata:/var/www/moodledata
restart: always
mysql:
image: mysql
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=moodle
restart: always