blob: b8306faa737938af8ffcd43d7291bd0a4b8e920c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
version: '3.8'
services:
db:
image: postgres:13-alpine
environment:
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
volumes:
- dbdata:/var/lib/postgresql/data
- ./sql:/sql
hommabot2:
build: .
image: registry.jan.systems/hommabot2:latest
env_file: .env
environment:
PORT: 3000
PG_CONNECTION_URI: postgresql://postgres:postgres@db/postgres
ports:
- 3000:3000
volumes:
dbdata:
|