Initial commit

This commit is contained in:
2023-09-09 14:53:02 +02:00
commit e0ee091a7b
33 changed files with 788 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
# Uncomment and change the following variables if you want to use them.
#RESTART=unless-stopped
#SYNOLOGY_VOLUME=volume1
#STACK_NAME=firefox
#UID=1024
#GID=101
#TZ=Europe/Amsterdam
#FIREFOX_CONTAINER_NAME=Firefox
#FIREFOX_TAG=latest
#FIREFOX_PORT=3000
+16
View File
@@ -0,0 +1,16 @@
services:
# Firefox
filezilla:
container_name: ${FIREFOX_CONTAINER_NAME:-Firefox}
image: linuxserver/firefox:${FIREFOX_TAG:-latest}
restart: ${RESTART:-unless-stopped}
healthcheck:
test: curl -f http://localhost:3000/ || exit 1
environment:
PUID: ${UID:-1024}
PGID: ${GID:-101}
TZ: ${TZ:-Europe/Amsterdam}
ports:
- ${FIREFOX_PORT:-3000}:3000
volumes:
- /${SYNOLOGY_VOLUME:-volume1}/docker/${STACK_NAME:-firefox}/${FIREFOX_CONTAINER_NAME:-Firefox}/config:/config