Merge branch 'feature-docker-compose' of https://github.com/rankun203/easyappointments into rankun203-feature-docker-compose

This commit is contained in:
alext 2016-12-07 19:52:15 +01:00
commit 926b26f23c
2 changed files with 36 additions and 0 deletions

7
Dockerfile Normal file
View file

@ -0,0 +1,7 @@
FROM tutum/apache-php
MAINTAINER Kun Ran <rankun203@gmail.com>
# Note: this only exposes the port to other docker containers. You
# still have to bind to 80@host at runtime, as per the ACME spec.
EXPOSE 80

29
docker-compose.yml Normal file
View file

@ -0,0 +1,29 @@
# Easy!Appointments
# docker-compose up ea
ea_data:
image: 'busybox:latest'
volumes:
- /var/lib/mysql
- ./src:/app
command: sleep 3153600000
ea_db:
environment:
MYSQL_ROOT_PASSWORD: supersecret
MYSQL_DATABASE: easyappts
image: mysql:5.7
volumes_from:
- ea_data
# ports:
# - 8003:3306
restart: always
mem_limit: 200m
ea:
build: ./
ports:
- 8001:80
# - 8002:9000
links:
- ea_db:ea_db
volumes_from:
- ea_data
# Easy!Appointments end