Replace username with your linux username
If you are a level 100 chad, download Visual Studio Code and get the Remote - SSH Extention
cd /home/username
mkdir docker && cd "$_"
mkdir portainer
services:
portainer:
image: portainer/portainer-ce:latest # For Business Edition use: portainer/portainer-ee:latest
container_name: portainer
volumes:
- ./data:/data
- /var/run/docker.sock:/var/run/docker.sock
ports:
- "8000:8000"
- "9000:9000"
restart: always
volumes:
portainer_data:
docker compose up -d
You have now installed Portainer.
docker compose pull && docker compose up -d
You have now updated Portainer to the latest version!
Add this great template update link in Settings --> App Templates
https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Template/template.json
Old version: https://raw.githubusercontent.com/portainer/templates/master/templates-2.0.json
cd /home/username/docker
mkdir duckdns && cd "$_"
mkdir config
version: "2.1"
services:
duckdns:
image: ghcr.io/linuxserver/duckdns
container_name: duckdns
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Amsterdam
- SUBDOMAINS=test
- TOKEN=<YOURTOKEN>
- LOG_FILE=false
volumes:
- ./config:/config
restart: unless-stopped
cd /home/username/docker
mkdir tixati && cd "$_"
services:
tixati:
image: kyzimaspb/tixati
container_name: tixati
volumes:
- ./downloads:/home/tixati/Desktop/downloads
- ./torrent-files:/home/tixati/Desktop/torrent-files
environment:
- XVFB_RESOLUTION=1920x1080x24 # optional
- VNC_SERVER_PASSWORD=pass1234 # optional but recommended
ports:
- 8116:5900
restart: unless-stopped
cd /home/username/docker
mkdir immich && cd "$_"
Keep a eye for any breaking changes for any future releases
# You can find documentation for all the supported env variables at https://immich.app/docs/install/environment-variables
# The location where your uploaded files are stored
UPLOAD_LOCATION=./library
# The Immich version to use. You can pin this to a specific version like "v1.71.0"
IMMICH_VERSION=release
# Connection secrets for postgres and typesense. You should change these to random passwords
TYPESENSE_API_KEY=some-random-text
DB_PASSWORD=postgres
# The values below this line do not need to be changed
###################################################################################
DB_HOSTNAME=immich_postgres
DB_USERNAME=postgres
DB_DATABASE_NAME=immich
REDIS_HOSTNAME=immich_redis
DB_DATA_LOCATION=./pgdata
version: "3.8"
name: immich
services:
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
command: [ "start.sh", "immich" ]
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- /etc/localtime:/etc/localtime:ro
env_file:
- .env
ports:
- 2283:3001
depends_on:
- redis
- database
restart: unless-stopped
immich-machine-learning:
container_name: immich_machine_learning
image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
volumes:
- model-cache:/cache
env_file:
- .env
restart: unless-stopped
redis:
container_name: immich_redis
image: redis:6.2-alpine@sha256:afb290a0a0d0b2bd7537b62ebff1eb84d045c757c1c31ca2ca48c79536c0de82
restart: unless-stopped
database:
container_name: immich_postgres
image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
env_file:
- .env
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_DB: ${DB_DATABASE_NAME}
volumes:
- ./pgdata:/var/lib/postgresql/data
restart: unless-stopped
volumes:
model-cache:
tsdata:
cd /home/username/docker
mkdir ghost && cd "$_"
services:
ghost:
image: ghost:latest
restart: unless-stopped
depends_on:
- db
environment:
url: https://blog.YOURDOMAIN.com
database__client: mysql
database__connection__host: db
database__connection__user: root
database__connection__password: MyVeryStrongPassword!!123
database__connection__database: ghost
volumes:
- ./content:/var/lib/ghost/content
ports:
- 2368:2368
db:
image: mysql:8.0
ports:
- 3306:3306
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: MyVeryStrongPassword!!123
volumes:
- ./mysql:/var/lib/mysql
once running, go to /ghost
in your blogging platform and setup the account to get started
cd /home/username/docker
mkdir pds && cd "$_"
This is for the data for the service
mkdir pds && cd "$_" && mkdir blocks
PDS_HOSTNAME= # yourdomain.com
PDS_JWT_SECRET= # openssl rand --hex 16
PDS_ADMIN_PASSWORD= # openssl rand --hex 16
PDS_PLC_ROTATION_KEY_K256_PRIVATE_KEY_HEX= # openssl ecparam --name secp256k1 --genkey --noout --outform DER | tail --bytes=+8 | head --bytes=32 | xxd --plain --cols 32
# PDS_EMAIL_SMTP_URL= # smtp url
# PDS_EMAIL_FROM_ADDRESS= # email sender ([email protected])
# PDS_MODERATION_EMAIL_SMTP_URL= # moderation smtp url
# PDS_MODERATION_EMAIL_ADDRESS= # email sender ([email protected])
PDS_DATA_DIRECTORY=/pds
PDS_BLOBSTORE_DISK_LOCATION=/pds/blocks
PDS_DID_PLC_URL=https://plc.directory
PDS_BSKY_APP_VIEW_URL=https://api.bsky.app
PDS_BSKY_APP_VIEW_DID=did:web:api.bsky.app
PDS_REPORT_SERVICE_URL=https://mod.bsky.app
PDS_REPORT_SERVICE_DID=<>
PDS_CRAWLERS=https://bsky.network
LOG_ENABLED=true
PDS_INVITE_REQUIRED=false
cd ..
The
PDS_HOSTNAME
must not start withhttp
orhttps
openssl rand --hex 16
at least twice for PDS_JWT_SECRET
and PDS_ADMIN_PASSWORD
then copy and paste the results to the fieldsopenssl ecparam --name secp256k1 --genkey --noout --outform DER | tail --bytes=+8 | head --bytes=32 | xxd --plain --cols 32
for PDS_PLC_ROTATION_KEY_K256_PRIVATE_KEY_HEX
then copy and paste the results to the fieldservices:
pds:
container_name: pds
image: ghcr.io/bluesky-social/pds:latest
restart: unless-stopped
volumes:
- ./pds:/pds
env_file:
- ./pds/pds.env
ports:
- 8150:80
- 8151:3000
docker compose up -d
Once running, go to https://bsky.app/
and create a account
once created enable PDS_INVITE_REQUIRED
to true
or 1
docker compose up -d
cd /home/username/docker
mkdir teable && cd "$_"
TIMEZONE=GMT
# Postgres
POSTGRES_HOST=teable-db
POSTGRES_PORT=5432
POSTGRES_DB=example
POSTGRES_USER=teable-user
POSTGRES_PASSWORD=MY_SECURE!_PASSWORD
# App
PUBLIC_ORIGIN=https://mydomain.com # Replace this
PRISMA_DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB}
PUBLIC_DATABASE_PROXY=127.0.0.1:42345
# Need to support sending emails to enable the following configurations
# You need to modify the configuration according to the actual situation, otherwise it will not be able to send emails correctly.
#BACKEND_MAIL_HOST=smtp.teable.io
#BACKEND_MAIL_PORT=587
#BACKEND_MAIL_SECURE=true
#BACKEND_MAIL_SENDER=noreply.teable.io
#BACKEND_MAIL_SENDER_NAME=Teable
#BACKEND_MAIL_AUTH_USER=username
#BACKEND_MAIL_AUTH_PASS=password
# Network is a optional feature, you may enable it if you want to use it.
services:
teable:
image: ghcr.io/teableio/teable:latest
restart: always
ports:
- '8335:3000'
volumes:
- ./data:/app/.assets:rw
# you may use a bind-mounted host directory instead,
# so that it is harder to accidentally remove the volume and lose all your data!
# - ./docker/teable/data:/app/.assets:rw
env_file:
- .env
environment:
- TZ=${TIMEZONE}
- NEXT_ENV_IMAGES_ALL_REMOTE=true
# networks:
# - teable-standalone
depends_on:
teable-db-migrate:
condition: service_completed_successfully
teable-db:
image: postgres:15.4
restart: always
ports:
- '42345:5432'
volumes:
- ./db:/var/lib/postgresql/data:rw
# you may use a bind-mounted host directory instead,
# so that it is harder to accidentally remove the volume and lose all your data!
# - ./docker/db/data:/var/lib/postgresql/data:rw
environment:
- TZ=${TIMEZONE}
- POSTGRES_DB=${POSTGRES_DB}
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
# networks:
# - teable-standalone
healthcheck:
test: ['CMD-SHELL', "sh -c 'pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}'"]
interval: 10s
timeout: 3s
retries: 3
teable-db-migrate:
image: ghcr.io/teableio/teable-db-migrate:latest
environment:
- TZ=${TIMEZONE}
- PRISMA_DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB}
# networks:
# - teable-standalone
depends_on:
teable-db:
condition: service_healthy
# networks:
# teable-standalone:
# name: teable-standalone-network
# driver: bridge
docker compose up -d
put in your email and password in the sign up page to create a admin account, no email verification requiered uppon signup
Content
docker run -ti --rm --entrypoint create-hash.sh servercontainers/samba
ACCOUNT_(user)
and UID_(user)
as UID 1000 or moreforce user = (user)
to the envforce user = user;
force group = user;
Make sure public is set to false like:
public = no;
docker compose up -d