mirror of
https://github.com/hnhx/librex.git
synced 2025-04-29 14:09:27 -04:00
feat: add 'docker-compose.yml' template for easy-to-use
This commit is contained in:
parent
1bcd0ec358
commit
a25893b53d
1 changed files with 21 additions and 0 deletions
21
docker-compose.yml
Normal file
21
docker-compose.yml
Normal 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
|
Loading…
Add table
Reference in a new issue