OpenGist – Docker Compose

Anzeigen
services:
  opengist:
    image: ghcr.io/thomiceli/opengist:1
    container_name: opengist
    restart: unless-stopped
    ports:
      - "6157:6157" # HTTP port
      - "2244:2222" # SSH port, can be removed if you don't use SSH
    volumes:
      - "/root/docker-compose/opengist/data:/opengist"
    environment:
        OG_OPENGIST_HOME: /opengist
        OG_DB_URI: opengist.db
        OG_SQLITE_JOURNAL_MODE: WAL
        OG_EXTERNAL_URL: https://git.com
        OG_GITEA_URL: https://git.com
        OG_GITEA_CLIENT_KEY: "Gitteas-Client-Key"
        OG_GITEA_SECRET: "Gitea-Secret"
        OG_CUSTOM_NAME: "GitBase Gist"
        OG_SECRET_KEY: 32CharactersLongKeys
      # OG_MEILI_HOST: 192.168.8.176:7700
      # OG_INDEX: meilisearch
        OG_LOG_LEVEL: info
      # other configuration options
Anzeigen
Nach oben scrollen