added wikidocs

This commit is contained in:
2024-08-10 05:23:54 -05:00
parent c1edacbe31
commit f350969918
2 changed files with 29 additions and 0 deletions

12
wikidocs/.env Normal file
View File

@@ -0,0 +1,12 @@
#GLOBAL SETTINGS
COMPOSE_HTTP_TIMEOUT=120
COMPOSE_IGNORE_ORPHANS=1
DOCKER_CONFIGS=.
DOCKERGID=999
DOCKERHOSTNAME=DockerServer
DOCKERLOGGING_MAXFILE=10
DOCKERLOGGING_MAXSIZE=200k
PGID=1000
PUID=1000
UMASK=000
TZ=America/Chicago

17
wikidocs/compose.yml Normal file
View File

@@ -0,0 +1,17 @@
services:
wikidocs:
container_name: wikidocs
image: zavy86/wikidocs
environment:
- PUID=${PUID}
- PGID=${PGID}
ports:
- 8022:80
restart: always
volumes:
- ${DOCKER_CONFIGS}/data:/datasets
networks:
reverse-proxy:
name: reverse-proxy
external: true