30 lines
630 B
YAML
30 lines
630 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
neko:
|
|
image: ghcr.io/m1k1o/neko/firefox:latest
|
|
container_name: neko
|
|
restart: unless-stopped
|
|
shm_size: 2gb
|
|
ports:
|
|
- "8080:8080"
|
|
- "52000-52100:52000-52100/udp"
|
|
environment:
|
|
NEKO_PASSWORD: Password123@
|
|
NEKO_ADMIN_PASSWORD: Password123@
|
|
NEKO_DESKTOP_SCREEN: 1920x1080@30
|
|
NEKO_WEBRTC_EPR: 52000-52100
|
|
NEKO_WEBRTC_ICELITE: "1"
|
|
NEKO_ELEMENTS_HOST: ""
|
|
NEKO_ELEMENTS_PORT: ""
|
|
volumes:
|
|
- neko-data:/home/neko/Downloads
|
|
networks:
|
|
- neko-network
|
|
|
|
networks:
|
|
neko-network:
|
|
driver: bridge
|
|
|
|
volumes:
|
|
neko-data:
|