We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aade7aa commit 51bfe14Copy full SHA for 51bfe14
1 file changed
docker-compose.yml
@@ -5,3 +5,17 @@ services:
5
command: node build/main.js
6
environment:
7
- BOT_TOKEN=${BOT_TOKEN}
8
+
9
+ db:
10
+ image: postgres:14.1-alpine
11
+ restart: always
12
+ environment:
13
+ - POSTGRES_USER=postgres
14
+ - POSTGRES_PASSWORD=postgres
15
+ ports:
16
+ - '5432:5432'
17
+ volumes:
18
+ - db:/var/lib/postgresql/data
19
+volumes:
20
21
+ driver: local
0 commit comments