You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# docker-compose.yml
|
|
|
|
# Docker Hub: https://hub.docker.com/r/timothystewart6/littlelink-server
|
|
|
|
# Documentation: https://github.com/techno-tim/littlelink-server
|
|
|
|
# The WebUI can be found at http://<HOST_IP>:<WEBUI_PORT>
|
|
|
|
|
|
|
|
networks:
|
|
|
|
<NETWORK_NAME>:
|
|
|
|
external: true
|
|
|
|
|
|
|
|
services:
|
|
|
|
littlelink-server:
|
|
|
|
container_name: littlelink-server
|
|
|
|
environment:
|
|
|
|
- <SEE_DOCUMENTATION>
|
|
|
|
image: timothystewart6/littlelink-server:<VERSION_TAG>
|
|
|
|
networks:
|
|
|
|
- <NETWORK_NAME>
|
|
|
|
ports:
|
|
|
|
- "3000:3000" # WebUI Port
|
|
|
|
restart: unless-stopped
|
|
|
|
security_opt:
|
|
|
|
- no-new-privileges:true
|