Parent Directory
|
Revision Log
chore: add trunk
1 | rakinar2 | 575 | 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 |