Skip to content

Setup NocoDB

Overview

NocoDB is the fastest and easiest way to build databases online.

Important Docker Files

.env file

.env
NAME=ntfy
TZ=EST
DOMAIN=
APPDATA=
PORT=80

docker-compose.yml file

docker-compose.yml
services:
  ntfy:
    image: binwiederhier/ntfy
    container_name: ${NAME}
    command: serve
    environment:
      TZ: ${TZ}    
    volumes:
      - ${APPDATA}/${NAME}/cache:/var/cache/ntfy
      - ${APPDATA}/${NAME}/config:/etc/ntfy
    restart: always
    networks:
      - proxy
    labels:
      swag: enable
      swag_address: ${NAME}
      swag_port: ${PORT}
      swag_proto: http
      swag_url: ${NAME}.${DOMAIN}
      com.centurylinklabs.watchtower.enable: true
networks:
  proxy:
    external: true

Start the Container

Start the Container
docker compose up -d