add Dockerfile and docker-compose
This commit is contained in:
parent
cdc001455d
commit
7d1a4aaa3e
|
@ -0,0 +1,7 @@
|
|||
FROM oberd/php-8.0-apache
|
||||
|
||||
WORKDIR /var/www/html
|
||||
|
||||
COPY . .
|
||||
|
||||
EXPOSE 80
|
|
@ -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.
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
version: '3'
|
||||
|
||||
services:
|
||||
librex:
|
||||
|
||||
image: librex:latest
|
||||
|
||||
restart: always
|
||||
|
||||
ports:
|
||||
- "9000:80"
|
Loading…
Reference in New Issue