dpv007 commited on
Commit
edd928b
·
unverified ·
1 Parent(s): 7249373

Delete docker-compose.yml

Browse files
Files changed (1) hide show
  1. docker-compose.yml +0 -38
docker-compose.yml DELETED
@@ -1,38 +0,0 @@
1
- version: "3.9"
2
-
3
- services:
4
- backend:
5
- build:
6
- context: ./backend
7
- dockerfile: Dockerfile
8
- ports:
9
- - "7860:7860"
10
- env_file:
11
- - ./backend/.env
12
- environment:
13
- - ENVIRONMENT=development
14
- - DEBUG=true
15
- volumes:
16
- - ./backend:/app
17
- depends_on:
18
- - db
19
- restart: unless-stopped
20
-
21
- db:
22
- image: postgres:16-alpine
23
- environment:
24
- POSTGRES_USER: postgres
25
- POSTGRES_PASSWORD: postgres
26
- POSTGRES_DB: keystone
27
- ports:
28
- - "5432:5432"
29
- volumes:
30
- - postgres_data:/var/lib/postgresql/data
31
- healthcheck:
32
- test: ["CMD-SHELL", "pg_isready -U postgres"]
33
- interval: 10s
34
- timeout: 5s
35
- retries: 5
36
-
37
- volumes:
38
- postgres_data: