forked from nonchris/discord-fury
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (35 loc) · 779 Bytes
/
docker-compose.yml
File metadata and controls
36 lines (35 loc) · 779 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
35
36
---
version: "3"
services:
discord-fury:
image: nonchris/discord-fury:2.0
container_name: discord-fury
volumes:
- "./data/app:/app/data:rw"
environment:
- UID=1000
- GID=1000
- POSTGRES_USER=db_user
- POSTGRES_PASSWORD=db_pw
- POSTGRES_SERVER=db
- POSTGRES_DB=db_name
- TOKEN=
- PREFIX=
- VERSION=
- OWNER_ID=
- OWNER_NAME=
- CHANNEL_TRACK_LIMIT=
stdin_open: true
tty: true
restart: unless-stopped
db:
image: postgres:latest
container_name: postgres_db
volumes:
- "./data/postgress:/var/lib/postgresql/data"
environment:
POSTGRES_USER: db_user
POSTGRES_PASSWORD: db_pw
POSTGRES_DB: db_name
stdin_open: true
tty: true