Inital commit

This commit is contained in:
2020-11-19 15:36:28 +01:00
parent 71f32f83d3
commit 66ce4ee218
18077 changed files with 2166122 additions and 35184 deletions

31
docker-compose.yml Normal file
View File

@@ -0,0 +1,31 @@
web:
build: ./docker/php
ports:
- "8080:80"
links:
- mariaDB
environment:
SYMFONY_ENV: dev
# see https://registry.hub.docker.com/u/jderusse/dns-gen/
#- DOMAIN_NAME=thelia.docker
command: /usr/sbin/apache2ctl -D FOREGROUND
volumes:
- .:/var/www/html
phpmyadmin:
image: corbinu/docker-phpmyadmin
ports:
- "8081:80"
environment:
MYSQL_ROOT_UNSERNAME: root
MYSQL_ROOT_PASSWORD: toor
MYSQL_PORT_3306_TCP_ADDR: maria
MYSQL_PORT_3306_TCP_PORT: 3306
links:
- mariaDB:maria
mariaDB:
image: mariadb
environment:
MYSQL_DATABASE: thelia
MYSQL_ROOT_PASSWORD: toor