neroshitron/docker-compose.yml

27 lines
439 B
YAML
Raw Normal View History

version: "3"
2024-05-21 22:32:11 -04:00
x-logging: &x-logging
logging:
driver: 'json-file'
options:
max-file: '5'
max-size: '10m'
services:
2024-05-24 17:57:03 -04:00
# neroshitron:
# build:
# context: .
# restart: unless-stopped
# ports:
# - 3000:3000
owncast:
image: owncast/owncast:latest
restart: unless-stopped
ports:
- 8080:8080
2024-05-26 02:14:59 -04:00
- 1935:1935
volumes:
2024-05-24 17:57:03 -04:00
- ./data:/owncast/data
2024-05-21 22:32:11 -04:00
volumes:
2024-05-24 00:16:02 -04:00
db-config: