flora is a fast and secure runtime that lets you write discord bots for your servers, with a rich TypeScript SDK, without worrying about running infrastructure. [mirror]
1services:
2 postgres-dev:
3 image: postgres:15
4 environment:
5 POSTGRES_DB: flora
6 POSTGRES_USER: user
7 POSTGRES_PASSWORD: pass
8 ports:
9 - '127.0.0.1:5433:5432'
10 volumes:
11 - postgres_dev_data:/var/lib/postgresql/data
12
13 valkey-dev:
14 image: valkey/valkey:latest
15 ports:
16 - '127.0.0.1:5434:6379'
17 volumes:
18 - valkey_dev_data:/data
19
20volumes:
21 postgres_dev_data:
22 valkey_dev_data: