14 lines
364 B
YAML
14 lines
364 B
YAML
|
|
services:
|
||
|
|
nodecast-tv:
|
||
|
|
image: ghcr.io/technomancer702/nodecast-tv:latest
|
||
|
|
build: https://github.com/technomancer702/nodecast-tv.git#main
|
||
|
|
container_name: nodecast-tv
|
||
|
|
ports:
|
||
|
|
- "3000:3000"
|
||
|
|
volumes:
|
||
|
|
- ./data:/app/data
|
||
|
|
restart: unless-stopped
|
||
|
|
environment:
|
||
|
|
- NODE_ENV=production
|
||
|
|
- PORT=3000 # Internal container port
|