-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdocker-compose.example.yml
More file actions
34 lines (34 loc) · 980 Bytes
/
Copy pathdocker-compose.example.yml
File metadata and controls
34 lines (34 loc) · 980 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
version: '3'
services:
db:
image: postgres:14-alpine
restart: unless-stopped
environment:
- POSTGRES_PASSWORD=ChangeMe123!
- POSTGRES_DB=venat
networks:
- venat
volumes:
- db-data:/var/lib/postgresql/data
venat:
# Valid tags:
# latest, full: the full Venat distribution with all in-tree modules included
# core: the core Venat distribution with no modules included
# image: ghcr.io/the-convocation/venat:core
image: ghcr.io/the-convocation/venat:latest
restart: unless-stopped
environment:
- DATABASE_HOST=db
- DATABASE_USER=postgres
- DATABASE_NAME=venat
- DATABASE_PASS=ChangeMe123! # This should match the password in the db container
- TOKEN=YourToken # Insert your Discord bot token here
- GUILD_ID_WITH_COMMANDS=YourGuildId # Insert your primary Discord guild ID here
networks:
- venat
depends_on:
- db
volumes:
db-data:
networks:
venat: