We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9381528 commit f80f33eCopy full SHA for f80f33e
docker-compose.yml
@@ -0,0 +1,35 @@
1
+version: "3.8"
2
+
3
+services:
4
+ fsu-discord-bot:
5
+ container_name: fsu-discord-bot
6
+ image: agntperfect/fsu-discord-bot
7
+ user: botuser
8
+ security_opt:
9
+ - no-new-privileges:true
10
+ # read_only: true
11
+ env_file:
12
+ - .env
13
+ restart: unless-stopped
14
+ volumes:
15
+ - fsu_data:/app/data:rw
16
+ - ./bot.db:/app/bot.db:rw
17
+ tmpfs:
18
+ - /tmp
19
+ logging:
20
+ driver: "json-file"
21
+ options:
22
+ max-size: "10m"
23
+ max-file: "3"
24
+ networks:
25
+ - fsu_net
26
27
+volumes:
28
+ fsu_data:
29
+ driver: local
30
31
+networks:
32
+ fsu_net:
33
+ name: fsu_net
34
+ driver: bridge
35
+ internal: false
scrape.js
0 commit comments