aboutsummaryrefslogtreecommitdiffstats
path: root/compose.yaml
blob: d1544a0ece5e525cd10a6ec08f436fa13c7ae33b (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
24
25
26
services:
  db:
    build:
      context: .
      dockerfile: Dockerfile.postgres
    ports:
      - 5432:5432
    environment:
      - POSTGRES_PASSWORD=secret
    volumes:
      - dbasik_data:/var/lib/postgresql/data
      - ./migrations:/dbasik
  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: