/[sudobot]/trunk/docker-compose.yml
ViewVC logotype

Contents of /trunk/docker-compose.yml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 575 - (show annotations)
Mon Jul 29 17:59:26 2024 UTC (7 months, 4 weeks ago) by rakinar2
File size: 661 byte(s)
chore: add trunk
1 services:
2 postgres:
3 image: "postgres:15-alpine"
4 restart: always
5 environment:
6 POSTGRES_USER: postgres
7 POSTGRES_PASSWORD: root
8 POSTGRES_DB: sudobot
9 volumes:
10 - pgdata:/var/lib/postgresql/data
11
12 bot:
13 build: .
14 ports:
15 - 4000:4000
16 volumes:
17 - ./config:/app/config
18 - ./logs:/app/logs
19 - ./storage:/app/storage
20 - ./tmp:/app/tmp
21 depends_on:
22 - postgres
23
24 adminer:
25 image: adminer
26 restart: always
27 ports:
28 - 8080:8080
29
30 volumes:
31 pgdata:

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26