mirror of
https://git.myvelabs.com/novnc/archlinux.git
synced 2025-12-17 22:56:20 +00:00
Add compose yaml for firefox
This commit is contained in:
parent
44afc7d6e2
commit
6a29b56a1f
2 changed files with 39 additions and 0 deletions
12
firefox/.env
Normal file
12
firefox/.env
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
# MyVNC Firefox service
|
||||
MYVNC_FIREFOX_PORT=
|
||||
MYVNC_FIREFOX_VNCPASS=
|
||||
|
||||
MYVNC_FIREFOX_CUSTOM_TITLE=
|
||||
MYVNC_FIREFOX_PROXYPATH=
|
||||
|
||||
MYVNC_FIREFOX_URL=
|
||||
MYVNC_FIREFOX_OPTS=
|
||||
|
||||
MYVNC_FIREFOX_VNCSHARING=
|
||||
|
||||
27
firefox/docker-compose.yaml
Normal file
27
firefox/docker-compose.yaml
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
services:
|
||||
firefox:
|
||||
image: myvnc/arch/firefox
|
||||
container_name: firefox
|
||||
restart: unless-stopped
|
||||
build: .
|
||||
# shm_size: 2gb
|
||||
# security_opt:
|
||||
# - seccomp:unconfined
|
||||
ports:
|
||||
- ${MYVNC_FIREFOX_PORT}:6900
|
||||
environment:
|
||||
MYVNC_VNCPASS: ${MYVNC_FIREFOX_VNCPASS}
|
||||
|
||||
MYVNC_CUSTOM_TITLE: ${MYVNC_FIREFOX_CUSTOM_TITLE}
|
||||
MYVNC_PROXYPATH: ${MYVNC_FIREFOX_PROXYPATH}
|
||||
|
||||
MYVNC_FIREFOX_URL: ${MYVNC_FIREFOX_URL}
|
||||
MYVNC_FIREFOX_OPTS: ${MYVNC_FIREFOX_OPTS}
|
||||
|
||||
MYVNC_VNCSHARING: ${MYVNC_FIREFOX_VNCSHARING}
|
||||
networks:
|
||||
- firefox
|
||||
|
||||
networks:
|
||||
firefox:
|
||||
external: false
|
||||
Loading…
Add table
Add a link
Reference in a new issue