mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2025-04-24 21:53:35 +00:00
add firefox
This commit is contained in:
parent
6e003aea1c
commit
28d5e37906
@ -130,6 +130,7 @@ docker compose up
|
|||||||
- [SonarQube](examples/sonarqube) - SonarQube is an open-source platform developed by SonarSource for continuous inspection of code quality to perform automatic reviews with static analysis of code to detect bugs and code smells on 29 programming languages.
|
- [SonarQube](examples/sonarqube) - SonarQube is an open-source platform developed by SonarSource for continuous inspection of code quality to perform automatic reviews with static analysis of code to detect bugs and code smells on 29 programming languages.
|
||||||
- [Fail2ban](examples/fail2ban) - Fail2ban is an intrusion prevention software framework. Written in the Python programming language, it is designed to prevent against brute-force attacks.
|
- [Fail2ban](examples/fail2ban) - Fail2ban is an intrusion prevention software framework. Written in the Python programming language, it is designed to prevent against brute-force attacks.
|
||||||
- [Tor-Browser](examples/tor-browser) - Running a Tor browser instance on any headless server.
|
- [Tor-Browser](examples/tor-browser) - Running a Tor browser instance on any headless server.
|
||||||
|
- [Firefox](examples/firefox) - Firefox by linuxserver.io allows you to run the popular Firefox web broser on a remote server.
|
||||||
|
|
||||||
### Internet of Things / Smart Home
|
### Internet of Things / Smart Home
|
||||||
- [Home Assistant](examples/homeassistant) - Open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server.
|
- [Home Assistant](examples/homeassistant) - Open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server.
|
||||||
|
3
examples/firefox/README.md
Normal file
3
examples/firefox/README.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# References
|
||||||
|
|
||||||
|
- https://hub.docker.com/r/linuxserver/firefox
|
31
examples/firefox/docker-compose.yml
Normal file
31
examples/firefox/docker-compose.yml
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
version: "3.3"
|
||||||
|
|
||||||
|
services:
|
||||||
|
firefox:
|
||||||
|
image: lscr.io/linuxserver/firefox:latest
|
||||||
|
container_name: firefox
|
||||||
|
hostname: firefox
|
||||||
|
restart: unless-stopped
|
||||||
|
security_opt:
|
||||||
|
- seccomp:unconfined # optional
|
||||||
|
environment:
|
||||||
|
- PUID=1000 # optional
|
||||||
|
- PGID=1000 # optional
|
||||||
|
- TZ=Europe/Berlin
|
||||||
|
volumes:
|
||||||
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/firefox/config:/config
|
||||||
|
ports:
|
||||||
|
- 3210:3000
|
||||||
|
#networks:
|
||||||
|
# - proxy
|
||||||
|
#labels:
|
||||||
|
# - traefik.enable=true
|
||||||
|
# - traefik.http.routers.firefox.rule=Host(`firefox.example.com`)
|
||||||
|
# - traefik.http.services.firefox.loadbalancer.server.port=8080
|
||||||
|
# - traefik.docker.network=proxy
|
||||||
|
# # Part for optional traefik middlewares
|
||||||
|
# - traefik.http.routers.firefox.middlewares=local-ipwhitelist@file,basic-auth@file
|
||||||
|
|
||||||
|
#networks:
|
||||||
|
# proxy:
|
||||||
|
# external: true
|
Loading…
x
Reference in New Issue
Block a user