aboutsummaryrefslogtreecommitdiffstats
path: root/compose.yaml
blob: 4206716468ecfdb2d3f8db93e01f1688e4c25af6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
services:
  db:
    image: postgres:16-alpine
    ports:
      - 5432:5432
    environment:
      - POSTGRES_PASSWORD=secret
    volumes:
      - dbasik_data:/var/lib/postgresql/data
  app:
    build:
      context: .
    volumes:
      - .:/app
    restart: "unless-stopped"
    command: >
      sh -c "go run ./cmd/dbasik-api"
    ports:
      - 5000:5000
    depends_on:
      - db
volumes:
  dbasik_data: