17 lines
530 B
YAML
17 lines
530 B
YAML
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
|