-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
46 lines (44 loc) · 990 Bytes
/
docker-compose.yaml
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
services:
server:
build:
context: .
dockerfile: deploy/server.Dockerfile
ports:
- "8000:8000"
env_file:
- .env
extra_hosts:
- "host.docker.internal:host-gateway"
restart: always
cmd_migrations:
build:
context: .
dockerfile: deploy/cmd_migrations.Dockerfile
env_file:
- .env
extra_hosts:
- "host.docker.internal:host-gateway"
cmd_food_to_db:
build:
context: .
dockerfile: deploy/cmd_food_to_db.Dockerfile
env_file:
- .env
extra_hosts:
- "host.docker.internal:host-gateway"
cmd_image_generation:
build:
context: .
dockerfile: deploy/cmd_image_generation.Dockerfile
env_file:
- .env
extra_hosts:
- "host.docker.internal:host-gateway"
cmd_server_health:
build:
context: .
dockerfile: deploy/cmd_server_health.Dockerfile
env_file:
- .env
extra_hosts:
- "host.docker.internal:host-gateway"