mirror of
https://github.com/Haxxnet/Compose-Examples.git
synced 2025-11-23 17:04:27 +01:00
add firefox
This commit is contained in:
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
|
||||
Reference in New Issue
Block a user