mirror of
https://github.com/Forceu/Gokapi.git
synced 2025-12-21 08:59:50 -06:00
* deprecate DOCKER_NONROOT in favor of docker --user ... * remove redundant named volumes creation in compose * remove DOCKER_NONROOT from demo env file * add deprecation warning to docker entrypoint * update documentation * Added feature to show deprecation messages in UI and logs Added deprecation message for Docker_NONROOT Fixed documentation --------- Co-authored-by: Marc Ole Bulling <Marc-Ole@gmx.de>
14 lines
268 B
YAML
14 lines
268 B
YAML
version: '3.3'
|
|
services:
|
|
gokapi:
|
|
image: f0rc3/gokapi:latest
|
|
container_name: gokapi
|
|
ports:
|
|
- "127.0.0.1:53842:53842"
|
|
volumes:
|
|
- ./gokapi-data:/app/data
|
|
- ./gokapi-config:/app/config
|
|
restart: always
|
|
env_file:
|
|
- "./.env"
|