forked from FOSSBilling/FOSSBilling
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FOSSBilling#1583 initial workflow update using debug reference in con…
…fig for install dir bypass
- Loading branch information
1 parent
01fa1d3
commit ed30808
Showing
4 changed files
with
37 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM php:8.1-apache | ||
|
||
RUN a2enmod rewrite headers | ||
|
||
RUN docker-php-ext-install pdo pdo_mysql | ||
|
||
ADD . /var/www/html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
version: "3.8" | ||
|
||
services: | ||
web: | ||
build: | ||
dockerfile: Dockerfile | ||
context: ./ | ||
image: php:8.1-apache | ||
ports: | ||
- 80:80 | ||
volumes: | ||
- ./src:/var/www/html | ||
mysql: | ||
image: mysql:8.0 | ||
environment: | ||
MYSQL_ROOT_PASSWORD: fossroot | ||
MYSQL_DATABASE: fossdb | ||
MYSQL_USER: fossdb | ||
MYSQL_PASSWORD: fossdb | ||
volumes: | ||
- mysql:/var/lib/mysql | ||
volumes: | ||
mysql: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters