aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
blob: dc39ea705075ef63eb7c3346ca3a1a51d0da2aab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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: eu.gcr.io/jan-systems/hommabot2:latest
    environment:
      PORT: 3000
    ports:
      - 3000:3000

volumes:
  dbdata: