Updated ports and added lighttpd, owncast
This commit is contained in:
parent
aa56e8df24
commit
4222b2f9a7
|
@ -7,7 +7,7 @@ services:
|
|||
network_mode: bridge
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 80:3000
|
||||
- 2255:3000
|
||||
volumes:
|
||||
- ./config:/app/config # Make sure your local config directory exists
|
||||
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
version: '3'
|
||||
|
||||
services:
|
||||
lighttpd:
|
||||
container_name: lighttpd
|
||||
image: sebp/lighttpd
|
||||
volumes:
|
||||
- /home/thordj/web:/var/www/localhost/htdocs
|
||||
- ./config:/etc/lighttpd
|
||||
ports:
|
||||
- "80:80"
|
||||
tty: true
|
|
@ -7,3 +7,4 @@ services:
|
|||
- '${DEV_HOME}:/home/workspace:cached'
|
||||
image: gitpod/openvscode-server
|
||||
container_name: openvscode
|
||||
network_mode: host
|
||||
|
|
|
@ -0,0 +1,23 @@
|
|||
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
|
Loading…
Reference in New Issue