-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
48 lines (45 loc) · 902 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
47
48
services:
app:
build:
args:
user: non_root_user
uid: 1000
context: .
dockerfile: Dockerfile.php
container_name: app
restart: unless-stopped
working_dir: /var/www
volumes:
- .:/var/www
networks:
- docker-network
node:
container_name: coinbase_api_node
build:
context: .
dockerfile: Dockerfile.node
ports:
- "5173:5173"
volumes:
- .:/var/www
- /var/www/node_modules
working_dir: /var/www
command: "npm run dev -- --host"
networks:
- docker-network
nginx:
image: nginx:1.27.3-alpine
container_name: nginx
restart: unless-stopped
depends_on:
- app
ports:
- "80:80"
volumes:
- .:/var/www
- ./docker-compose/nginx/:/etc/nginx/conf.d
networks:
- docker-network
networks:
docker-network:
driver: bridge