mirror of
https://github.com/Kugelschieber/schnittfest.git
synced 2026-01-18 10:20:27 +00:00
Fixed Dockerfile and added docker-compose.
This commit is contained in:
11
Dockerfile
11
Dockerfile
@@ -33,12 +33,11 @@ RUN addgroup -S appuser && \
|
|||||||
USER appuser
|
USER appuser
|
||||||
|
|
||||||
# default config
|
# default config
|
||||||
ENV EMVI_WIKI_HOST=0.0.0.0:8080
|
ENV SCHNITTFEST_HOST=0.0.0.0:8080
|
||||||
ENV EMVI_WIKI_LOGLEVEL=info
|
ENV SCHNITTFEST_LOGLEVEL=info
|
||||||
ENV EMVI_WIKI_ALLOWED_ORIGINS=*
|
ENV SCHNITTFEST_ALLOWED_ORIGINS=*
|
||||||
ENV EMVI_WIKI_HTTP_WRITE_TIMEOUT=5
|
ENV SCHNITTFEST_HTTP_WRITE_TIMEOUT=5
|
||||||
ENV EMVI_WIKI_HTTP_READ_TIMEOUT=5
|
ENV SCHNITTFEST_HTTP_READ_TIMEOUT=5
|
||||||
ENV EMVI_WIKI_TEMPLATE_BASE=/template
|
|
||||||
|
|
||||||
# run
|
# run
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
|
|||||||
7
docker-compose.yml
Normal file
7
docker-compose.yml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
version: '3'
|
||||||
|
|
||||||
|
services:
|
||||||
|
schnittfest:
|
||||||
|
image: kugel/schnittfest
|
||||||
|
ports:
|
||||||
|
- "8080:80"
|
||||||
Reference in New Issue
Block a user