internal/wisski: Move dockerfile and image build into a subdirectory

This commit is contained in:
Tom Wiesing 2024-04-03 11:48:48 +02:00
parent 9a8262b44a
commit ec50392609
No known key found for this signature in database
15 changed files with 4 additions and 3 deletions

View file

@ -7,9 +7,10 @@ These are required for the container to function properly.
DO NOT EDIT THESE, changes will be overwritten during the next rebuild.
- `docker-compose.yml`: Defines how the docker image is run
- `Dockerfile`: Dockerfile used to run the actual image
- `barrel/`: Contains Dockerfile for actual image to be used
- `Dockerfile`: Used to build the image
- `apache.d`, `scripts`, `php.ini.d`: Resources used during the docker-compose build.
- `.env`: Parameters for `docker-compose.yml`
- `apache.d`, `scripts`, `php.ini.d`: Resources used during the docker-compose build.
To tweak parameters inside the `.env` file, rebuild the image via `wdcli rebuild`.

View file

@ -3,7 +3,7 @@ version: "3.7"
services:
barrel:
build:
context: .
context: barrel
args:
BARREL_BASE_IMAGE: ${BARREL_BASE_IMAGE}
OPCACHE_MODE: ${OPCACHE_MODE}