13 lines
558 B
YAML
13 lines
558 B
YAML
|
version: "3" # Specifies the version of the Docker Compose file format
|
||
|
|
||
|
services:
|
||
|
firefox:
|
||
|
container_name: M_Viper-firefox # Name of the Docker container
|
||
|
image: kasmweb/firefox:1.14.0-rolling # Docker image for the Brave browser
|
||
|
ports:
|
||
|
- "6901:6901" # Expose port 6901 for VNC access
|
||
|
environment:
|
||
|
- VNC_PW=portainer # User: kasm_user Set the VNC password to 'portainer'
|
||
|
- LAUNCH_URL=https://community.bigbeartechworld.com/ # Set the default URL to Big Bear Tech World
|
||
|
shm_size: 512m # Allocate 512 MB of shared memory
|