mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-10-10 16:46:17 +00:00
added actual and easyappointments
This commit is contained in:
41
easyapointments/compose.yml
Normal file
41
easyapointments/compose.yml
Normal file
@@ -0,0 +1,41 @@
|
||||
# https://easyappointments.org/
|
||||
|
||||
name: easyappointments
|
||||
services:
|
||||
easyapointments:
|
||||
container_name: easyappointments
|
||||
image: alextselegidis/easyappointments:latest
|
||||
restart: always
|
||||
ports:
|
||||
- "8990:80"
|
||||
environment:
|
||||
- BASE_URL=http://localhost
|
||||
- DEBUG_MODE=TRUE
|
||||
- DB_HOST=mysql
|
||||
- DB_NAME=easyappointments
|
||||
- DB_USERNAME=root
|
||||
- DB_PASSWORD=secret
|
||||
volumes:
|
||||
- easyappointments:/var/www/html
|
||||
networks:
|
||||
- proxy
|
||||
|
||||
mysql:
|
||||
container_name: mysql-easyappointments
|
||||
image: mysql:8.0
|
||||
restart: always
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=secret
|
||||
- MYSQL_DATABASE=easyappointments
|
||||
volumes:
|
||||
- mysql:/var/lib/mysql
|
||||
networks:
|
||||
- proxy
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
|
||||
volumes:
|
||||
easyappointments:
|
||||
mysql:
|
Reference in New Issue
Block a user