-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
50 lines (45 loc) · 904 Bytes
/
docker-compose.yml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
version: '3.3'
services:
binfile-postges:
container_name: binfile-postges
hostname: binfile-postges
environment:
POSTGRES_PASSWORD: postgres
ports:
- "5432:5432"
image: postgres:15
networks:
- home
# binfile-flask:
# container_name: binfile-flask
# hostname: binfile-flask
# build:
# context: .
# dockerfile: ./src/app/Dockerfile
# ports:
# - "8000:8000"
# - "7000:7000"
# volumes:
# - ./src/app/logs/:/alfbot/src/app/logs/
# depends_on:
# - alf-bot-redis
# - alf-bot-postges
# networks:
# - home
#
#
# alf-bot-nginx:
# container_name: alf-bot-nginx
# hostname: alf-bot-nginx
# image: nginx
# ports:
# - "80:80"
# volumes:
# - ./default.conf:/etc/nginx/conf.d/default.conf
# depends_on:
# - alf-bot-fastapi
# networks:
# - home
#
networks:
home: {}