Docker
Running with docker run
docker rundocker run --detach [--env ENVIRONMENT_VARIABLE=value] \
--volume <host_path>:/data --publish <host_port>:80 \
directorylister/directorylister:5Running with docker compose
docker composeservices:
directory-lister:
image: directorylister/directorylister:<version>
environment:
# APP_LANGUAGE: en
# DISPLAY_READMES: true
# READMES_FIRST: false
# ZIP_DOWNLOADS: true
# TIMEZONE: America/Phoenix
# See configuration docs for additional variables
ports:
- <host_port>:80
volumes:
- <host_path>:/data
restart: unless-stoppedAdvanced docker compose usage
docker compose usage Last updated
Was this helpful?