aboutsummaryrefslogtreecommitdiffstats
path: root/compose.yaml
blob: 38a3ba9068d87ad0878d6b51a608b9a3be168b49 (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
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: "./app"
    ports:
      - 5000:5000
    depends_on:
      - db
volumes:
  dbasik_data: