Parent Directory
|
Revision Log
chore: add old version archive branches (2.x to 9.x-dev)
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 | - ./tmp/volume:/data |
18 | - ./tmp/volume/config:/app/config |
19 | - ./tmp/volume/logs:/app/logs |
20 | - ./tmp/volume/storage:/app/storage |
21 | - ./tmp/volume/tmp:/app/tmp |
22 | depends_on: |
23 | - postgres |
24 | |
25 | adminer: |
26 | image: adminer |
27 | restart: always |
28 | ports: |
29 | - 8080:8080 |
30 | |
31 | volumes: |
32 | pgdata: |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |