add Dockerfile and docker-compose

This commit is contained in:
lamacchinadesiderante 2023-02-03 23:05:47 +01:00
parent cdc001455d
commit 7d1a4aaa3e
3 changed files with 25 additions and 1 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM oberd/php-8.0-apache
WORKDIR /var/www/html
COPY . .
EXPOSE 80

View File

@ -1,3 +1,9 @@
# LibreX
Questo è un fork del progetto [LibreX](https://github.com/hnhx/librex). Il progetto è stato tradotto in italiano, sono stati aggiunti stili customizzati e immagini docker.
Questo è un fork del progetto [LibreX](https://github.com/hnhx/librex).
Il progetto è stato tradotto in italiano.
Lo stile è stato customizzato.
E' stata aggiunta un'immagine Docker.

11
docker-compose.yml Normal file
View File

@ -0,0 +1,11 @@
version: '3'
services:
librex:
image: librex:latest
restart: always
ports:
- "9000:80"