Skip to content

Adding your own containers to Saltbox¶

When you install existing roles in saltbox, some things get handled behind the scenes for you. Notably, this includes creating the subdomain[s] at cloudflare and creating the /opt/APPNAME directory tree.

When you add a container manually as outlined on this page, neither of those things will be done for you (unless you have installed our ddns container), so prior to running the docker commands described below you will have to create the APPNAME.domain.tld subdomain at cloudflare [or wherever your DNS is] and create the required /opt/APPNAME directory tree.

If you want to create a role file that you can install like the built-in applications, see here.

IMPORTANT: APPNAME is a placeholder. You need to change that everywhere it appears to match the application you are installing.

Docker Compose¶

version: "3"
services:
  APPNAME:
    restart: unless-stopped 
    container_name: APPNAME 
    image: docker/image:tag 
    hostname: APPNAME 
    environment: 
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    networks: 
      - saltbox
    labels:
      com.github.saltbox.saltbox_managed: true 
      traefik.enable: true 
      traefik.http.routers.APPNAME-http.entrypoints: web 
      traefik.http.routers.APPNAME-http.middlewares: globalHeaders@file,redirect-to-https@docker,cloudflarewarp@docker,authelia@docker 
      traefik.http.routers.APPNAME-http.rule: Host(`APPNAME.yourdomain.com`) 
      traefik.http.routers.APPNAME-http.service: APPNAME 
      traefik.http.routers.APPNAME.entrypoints: websecure 
      traefik.http.routers.APPNAME.middlewares: globalHeaders@file,secureHeaders@file,cloudflarewarp@docker,authelia@docker 
      traefik.http.routers.APPNAME.rule: Host(`APPNAME.yourdomain.com`) 
      traefik.http.routers.APPNAME.service: APPNAME 
      traefik.http.routers.APPNAME.tls.certresolver: cfdns 
      traefik.http.routers.APPNAME.tls.options: securetls@file 
      traefik.http.services.APPNAME.loadbalancer.server.port: APPLICATION_PORT 
    volumes: 
      - /opt/APPNAME:/CONFIG
      - /etc/localtime:/etc/localtime:ro

networks: 
  saltbox:
    external: true
version: "3"
services:
  APPNAME:
    restart: unless-stopped 
    container_name: APPNAME 
    image: docker/image:tag 
    hostname: APPNAME 
    environment: 
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    networks: 
      - saltbox
    labels:
      com.github.saltbox.saltbox_managed: true 
      traefik.enable: true 
      traefik.http.routers.APPNAME-api-http.entrypoints: web 
      traefik.http.routers.APPNAME-api-http.middlewares: globalHeaders@file,redirect-to-https@docker,cloudflarewarp@docker 
      traefik.http.routers.APPNAME-api-http.priority: 99 
      traefik.http.routers.APPNAME-api-http.rule: Host(`APPNAME.domain.tld`) && (PathPrefix(`/api`) || PathPrefix(`/ping`)) 
      traefik.http.routers.APPNAME-api-http.service: APPNAME 
      traefik.http.routers.APPNAME-api.entrypoints: websecure 
      traefik.http.routers.APPNAME-api.middlewares: globalHeaders@file,secureHeaders@file,cloudflarewarp@docker 
      traefik.http.routers.APPNAME-api.priority: 99 
      traefik.http.routers.APPNAME-api.rule: Host(`APPNAME.domain.tld`) && (PathPrefix(`/api`) || PathPrefix(`/ping`)) 
      traefik.http.routers.APPNAME-api.service: APPNAME 
      traefik.http.routers.APPNAME-api.tls.certresolver: cfdns 
      traefik.http.routers.APPNAME-api.tls.options: securetls@file 
      traefik.http.routers.APPNAME-http.entrypoints: web 
      traefik.http.routers.APPNAME-http.middlewares: globalHeaders@file,redirect-to-https@docker,cloudflarewarp@docker,authelia@docker 
      traefik.http.routers.APPNAME-http.rule: Host(`APPNAME.yourdomain.com`) 
      traefik.http.routers.APPNAME-http.service: APPNAME 
      traefik.http.routers.APPNAME.entrypoints: websecure 
      traefik.http.routers.APPNAME.middlewares: globalHeaders@file,secureHeaders@file,cloudflarewarp@docker,authelia@docker 
      traefik.http.routers.APPNAME.rule: Host(`APPNAME.yourdomain.com`) 
      traefik.http.routers.APPNAME.service: APPNAME 
      traefik.http.routers.APPNAME.tls.certresolver: cfdns 
      traefik.http.routers.APPNAME.tls.options: securetls@file 
      traefik.http.services.APPNAME.loadbalancer.server.port: APPLICATION_PORT 
    volumes: 
      - /opt/APPNAME:/CONFIG
      - /etc/localtime:/etc/localtime:ro

networks: 
  saltbox:
    external: true
version: "3"
services:
  APPNAME:
    restart: unless-stopped 
    container_name: APPNAME 
    image: docker/image:tag 
    hostname: APPNAME 
    environment: 
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    networks: 
      - saltbox
    labels:
      com.github.saltbox.saltbox_managed: true 
      traefik.enable: true 
      traefik.http.routers.APPNAME-http.entrypoints: web 
      traefik.http.routers.APPNAME-http.middlewares: globalHeaders@file,redirect-to-https@docker,cloudflarewarp@docker 
      traefik.http.routers.APPNAME-http.rule: Host(`APPNAME.yourdomain.com`) 
      traefik.http.routers.APPNAME-http.service: APPNAME 
      traefik.http.routers.APPNAME.entrypoints: websecure 
      traefik.http.routers.APPNAME.middlewares: globalHeaders@file,secureHeaders@file,cloudflarewarp@docker 
      traefik.http.routers.APPNAME.rule: Host(`APPNAME.yourdomain.com`) 
      traefik.http.routers.APPNAME.service: APPNAME 
      traefik.http.routers.APPNAME.tls.certresolver: cfdns 
      traefik.http.routers.APPNAME.tls.options: securetls@file 
      traefik.http.services.APPNAME.loadbalancer.server.port: APPLICATION_PORT 
    volumes: 
      - /opt/APPNAME:/CONFIG
      - /etc/localtime:/etc/localtime:ro

networks: 
  saltbox:
    external: true
version: "3"
services:
  APPNAME:
    restart: unless-stopped 
    container_name: APPNAME 
    image: docker/image:tag 
    hostname: APPNAME 
    environment: 
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    networks: 
      - saltbox
    labels:
      com.github.saltbox.saltbox_managed: true 
    volumes: 
      - /opt/APPNAME:/CONFIG
      - /etc/localtime:/etc/localtime:ro

networks: 
  saltbox:
    external: true