-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
35 lines (33 loc) · 983 Bytes
/
docker-compose.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# MIT Licence
# Copyright (c) 2023 Simon Frankenberger
# Please see LICENCE.md for complete licence text.
version: '3.7'
services:
mariadb:
image: mariadb:10
restart: unless-stopped
environment:
MARIADB_ROOT_PASSWORD: "root"
MARIADB_DATABASE: "blm2_test"
MARIADB_USER: "blm2_test"
MARIADB_PASSWORD: "blm2_test"
ports:
- "3306:3306"
application:
image: bratkartoffel/web:blm2-dev
build:
context: .
dockerfile: Dockerfile-php
restart: unless-stopped
environment:
SMTPHOST: "localhost"
ports:
- "80:80"
tmpfs:
- /var/www/html/config:uid=33,gid=33
volumes:
- ../../../../:/var/www/html
- ../../../../config/config-defaults.ini:/var/www/html/config/config-defaults.ini
- ./config.ini:/var/www/html/config/config.ini
- ./test-reset-player.php:/var/www/html/actions/test-reset-player.php
- ./test-run-cron.php:/var/www/html/actions/test-run-cron.php