This commit is contained in:
2022-02-15 07:33:00 +01:00
commit 50638af575
52 changed files with 7293 additions and 0 deletions

29
docker-compose.yml Executable file
View File

@@ -0,0 +1,29 @@
version: '3.4'
services:
web:
image: josefjebavy/debian-apache-php8.0-nette
working_dir: /var/www/html
volumes:
- .:/var/www/html
ports:
- 80:80
- 443:443
db:
image: mariadb:10.6
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: root
volumes:
- .docker/mysql:/var/lib/mysql
# adminer:
# image: adminer
# ports:
# - 8080:8080
#
# composer:
# image: composer
# command: [ "composer", "install" ]
# volumes:
# - .:/app