24 lines
519 B
YAML
24 lines
519 B
YAML
version: '3.3'
|
|
|
|
volumes:
|
|
data:
|
|
driver_opts:
|
|
type: "nfs"
|
|
o: "addr=192.168.1.245,nolock,soft,rw"
|
|
device: ":/mnt/data/storage/owncast"
|
|
|
|
services:
|
|
run:
|
|
volumes:
|
|
- type: volume
|
|
source: data
|
|
target: /app/data
|
|
volume:
|
|
nocopy: true
|
|
ports:
|
|
- '8085:8080'
|
|
- '1935:1935'
|
|
image: gabekangas/owncast:latest
|
|
restart: always
|
|
container_name: owncast
|