forked from uberCad/uberCad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
45 lines (40 loc) · 1.06 KB
/
docker-compose.yml
File metadata and controls
45 lines (40 loc) · 1.06 KB
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
version: "3"
services:
portainer:
container_name: "portainer"
restart: always
image: "portainer/portainer"
ports:
- "9000:9000"
- "8000:8000"
# admin:9qg8FWsMHUJpZQFY
command: --admin-password '$$2y$$05$$Jo63mh4u322.C846jDGLke/FqYquyTzvBQlwjrgSU/fzo3FUAl2CS'
volumes:
- /var/run/docker.sock:/var/run/docker.sock
# - portainer_data:/data
arangodb:
container_name: "arangodb"
restart: always
image: arangodb
environment:
- ARANGO_ROOT_PASSWORD=somepasswordatata
ports:
- 8529:8529
# volumes:
# - ./db/arangodb:/var/lib/arangodb3
# - ./db/arangodb-apps:/var/lib/arangodb3-apps
ubercad_front:
build:
context: .
dockerfile: Dockerfile
image: "ubercad_front"
container_name: "ubercad_front"
restart: unless-stopped
env_file: .env
environment:
- REACT_APP_ARANGODB_HOST=https://db.foxydev.pp.ua/_db/cad/
ports:
- "80:80"
# volumes:
# - ./tmp/volume/build:/usr/share/nginx/html
# - node_modules:/home/node/app/node_modules