Workflow update

pull/2/head
technorabilia 3 years ago
parent 05ecb7e343
commit b2f745f519

@ -0,0 +1,24 @@
# [FIleZilla]({{ project_url }}) Client is a fast and reliable cross-platform
# FTP, FTPS and SFTP client with lots of useful features and an intuitive
# graphical user interface.
---
version: "2.1"
services:
filezilla:
image: ghcr.io/linuxserver/filezilla
container_name: filezilla
environment:
# for GroupID
- PUID=${PUID:-1024}
# for UserID
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
- TZ=${TZ:-Europe/Amsterdam}
volumes:
# Users home directory in the container, stores local files and settings
- ${BASEDIR:-/volume1/docker}/filezilla/config:/config
ports:
# FileZilla desktop gui.
- 3000:3000
restart: unless-stopped

@ -0,0 +1,14 @@
# [FIleZilla]({{ project_url }}) Client is a fast and reliable cross-platform
# FTP, FTPS and SFTP client with lots of useful features and an intuitive
# graphical user interface.
source ./.env
docker run -d \
--name=filezilla \
-e PUID=${PUID:-1024} `# for GroupID` \
-e PGID=${PGID:-100} `# for UserID` \
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
-p 3000:3000 `# FileZilla desktop gui.` \
-v ${BASEDIR:-/volume1/docker}/filezilla/config:/config `# Users home directory in the container, stores local files and settings` \
--restart unless-stopped \
ghcr.io/linuxserver/filezilla

@ -0,0 +1,3 @@
ln -s ../docker-env.cfg ./.env
. ./.env
mkdir -p ${BASEDIR:-/volume1/docker}/filezilla/config

@ -0,0 +1,27 @@
# [Firefox]({{ project_url }}) Browser, also known as Mozilla Firefox or simply
# Firefox, is a free and open-source web browser developed by the Mozilla
# Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko
# layout engine to render web pages, which implements current and anticipated
# web standards.
---
version: "2.1"
services:
firefox:
image: ghcr.io/linuxserver/firefox
container_name: firefox
environment:
# for GroupID
- PUID=${PUID:-1024}
# for UserID
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
- TZ=${TZ:-Europe/Amsterdam}
volumes:
# Users home directory in the container, stores local files and settings
- ${BASEDIR:-/volume1/docker}/firefox/config:/config
ports:
# Firefox desktop gui.
- 3000:3000
shm_size: "1gb"
restart: unless-stopped

@ -0,0 +1,17 @@
# [Firefox]({{ project_url }}) Browser, also known as Mozilla Firefox or simply
# Firefox, is a free and open-source web browser developed by the Mozilla
# Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko
# layout engine to render web pages, which implements current and anticipated
# web standards.
source ./.env
docker run -d \
--name=firefox \
-e PUID=${PUID:-1024} `# for GroupID` \
-e PGID=${PGID:-100} `# for UserID` \
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
-p 3000:3000 `# Firefox desktop gui.` \
-v ${BASEDIR:-/volume1/docker}/firefox/config:/config `# Users home directory in the container, stores local files and settings` \
--shm-size="1gb" \
--restart unless-stopped \
ghcr.io/linuxserver/firefox

@ -0,0 +1,3 @@
ln -s ../docker-env.cfg ./.env
. ./.env
mkdir -p ${BASEDIR:-/volume1/docker}/firefox/config
Loading…
Cancel
Save