13 lines
373 B
YAML
13 lines
373 B
YAML
|
services:
|
||
|
fireshare:
|
||
|
container_name: fireshare
|
||
|
image: docker.io/shaneisrael/fireshare:latest
|
||
|
restart: always
|
||
|
env_file: .env
|
||
|
ports:
|
||
|
- 127.0.0.1:{{ ports['fireshare'] }}:80
|
||
|
volumes:
|
||
|
- {{ volumes['fireshare_datadir'] }}:/data
|
||
|
- {{ volumes['fireshare_processeddir'] }}:/processed
|
||
|
- {{ volumes['fireshare_videosdir'] }}:/videos
|