-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (34 loc) · 907 Bytes
/
docker-compose.yml
File metadata and controls
36 lines (34 loc) · 907 Bytes
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
version: "3"
services:
frontend:
build:
dockerfile: Dockerfile
context: ./frontend
args:
REACT_APP_GOOGLEAUTH_APP_CLIENT_ID: ${REACT_APP_GOOGLEAUTH_APP_CLIENT_ID}
REACT_APP_GITHUB_APP_CLIENT_ID: ${REACT_APP_GITHUB_APP_CLIENT_ID}
REACT_APP_OPENVIDU_SERVER_URL: ${REACT_APP_OPENVIDU_SERVER_URL}
REACT_APP_OPENVIDU_SERVER_SECRET: ${REACT_APP_OPENVIDU_SERVER_SECRET}
container_name: free_frontend
volumes:
- /app/node_modules
- ./frontend:/app
stdin_open: true
nginx:
restart: always
build:
dockerfile: Dockerfile
context: ./nginx
container_name: free_nginx
volumes:
- /etc/letsencrypt:/etc/letsencrypt
ports:
- "80:80"
- "443:443"
backend:
build:
dockerfile: Dockerfile
context: ./backend
container_name: free_backend
volumes:
- ./backend:/app