Initial commit
This commit is contained in:
@@ -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
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user