File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11FROM php:8.1-apache
22
3- COPY ./ /var/www/html/
3+ COPY ./ /var/www/html/client
44
55RUN a2enmod rewrite
66RUN a2enmod expires
Original file line number Diff line number Diff line change @@ -2,13 +2,12 @@ version: '1.0'
22services :
33 dvb-i-reference-client :
44 # Comment build and uncomment image if you want to use prebuilt image rather than build from the source code
5- # build: .
5+ # build: .
66 image : ghcr.io/ccma-enginyeria/dvb-i-reference-client/dvb-i-reference-client:latest
7- # Comment volumes if you want to use your own code rather than use from docker image
8- volumes :
9- - ./:/var/www/html/
7+ # Uncomment volumes if you want to use the source code rather than use from docker image
8+ # volumes:
9+ # - ./:/var/www/html/client
1010 environment :
11- - no_proxy=localhost,127.0.0.1
12- - INSTALL_LOCATION=http://localhost:8888
11+ - INSTALL_LOCATION=${INSTALL_LOCATION:-http://localhost:8888/client}
1312 ports :
1413 - " 8888:80"
Original file line number Diff line number Diff line change 11// DVB-I Reference installation location -- also backend/configuration.php
2- var INSTALL_LOCATION = "" ;
2+ var INSTALL_LOCATION = "/client " ;
33
44// set to true to include <Service> channels that are not included in the selected LCN table.
55var INCLUDE_NON_LCN_CHANNELS = false ;
You can’t perform that action at this time.
0 commit comments