feat: add 'docker-compose.yml' template for easy-to-use

This commit is contained in:
Junior L. Botelho (JLB) 2023-03-07 18:34:03 -03:00
parent 1bcd0ec358
commit a25893b53d
No known key found for this signature in database
GPG Key ID: 6A25840754F2A524
1 changed files with 21 additions and 0 deletions

21
docker-compose.yml Normal file
View File

@ -0,0 +1,21 @@
version: "2.1"
services:
librex:
image: librex:latest
container_name: librex
network_mode: bridge
ports:
- 8080:8080
environment:
- PUID=1000
- PGID=1000
- VERSION=docker
- TZ=America/New_York
- CONFIG_GOOGLE_DOMAIN=com
- CONFIG_GOOGLE_LANGUAGE_SITE=en
- CONFIG_GOOGLE_LANGUAGE_RESULTS=en
- CONFIG_WIKIPEDIA_LANGUAGE=en
volumes:
- ./nginx_logs:/var/log/nginx
- ./php_logs:/var/log/php7
restart: unless-stopped