๐Ÿ“ฆ jxtrt / logr

๐Ÿ“„ docker-compose.yml ยท 25 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25version: '3.1'

services:
  logr:
    image: ghcr.io/jnt0rrente/logr
    environment:
      APP_APIKEY: ${APP_APIKEY}
      OUTPUT: "file" #"file" or "database"
      
      #if output: "database"
      DATABASE_TYPE: "mongodb" #mariadb planned but not yet implemented

      #if database_type: "mongodb"
      MONGODB_CONNECTION_STRING: ${MONGODB_CONNECTION_STRING}
      
      ports:
        - 32032:32032
      
      volumes: #required if output: "file"
        - logr:/logr

volumes:
  logr:
    external: true