aboutsummaryrefslogblamecommitdiffstats
path: root/compose.yaml
blob: 38a3ba9068d87ad0878d6b51a608b9a3be168b49 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

         


                                     

                 



                                            
                            


                

                
                             
                    





                 
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: