Skip to content

Commit 61584e0

Browse files
rootroot
root
authored and
root
committedAug 17, 2020
Initial commit
0 parents  commit 61584e0

File tree

600 files changed

+50518
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

600 files changed

+50518
-0
lines changed
 

‎docker-compose.yaml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
version: "3"
2+
services:
3+
4+
lotgd-web:
5+
image: kizaing/lotgd-web
6+
ports:
7+
- "8007:80"
8+
environment:
9+
- TZ=America/Toronto
10+
volumes:
11+
- /media/Cerberus/Backup/Docker/LotGD/lotgd-web/site:/var/www/lotgd
12+
depends_on:
13+
- lotgd-php
14+
- lotgd-db
15+
links:
16+
- lotgd-php
17+
- lotgd-db
18+
lotgd-php:
19+
image: kizaing/lotgd-php
20+
environment:
21+
- TZ=America/Toronto
22+
volumes:
23+
- /media/Cerberus/Backup/Docker/LotGD/lotgd-web/site:/var/www/lotgd
24+
lotgd-db:
25+
image: kizaing/lotgd-db
26+
environment:
27+
- MYSQL_ROOT_PASSWORD=lotgd

‎lotgd-db/Dockerfile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM mariadb
2+
3+
MAINTAINER Chris P
4+
5+
ENV MYSQL_ROOT_PASSWORD "lotgd"
6+
7+
#Copies in the pre-populated database files
8+
COPY mysql /var/lib/mysql
9+
10+
EXPOSE 3306

0 commit comments

Comments
 (0)
Please sign in to comment.