forked from Mirobit/bitcoin-node-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (35 loc) · 742 Bytes
/
docker-compose.yml
File metadata and controls
36 lines (35 loc) · 742 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
services:
php:
build:
context: .
dockerfile: ./devops/docker/Dockerfile
environment:
- RPC_USER=$RPC_USER
- RPC_PASSWORD=$RPC_PASSWORD
- RPC_PORT=$RPC_PORT
- RPC_IP=$RPC_IP
- CHAIN_SYMBOL=$CHAIN_SYMBOL
ports:
- 9000
volumes:
- ./data:/var/www/data
- ./views:/var/www/views
- ./src:/var/www/src
- ./public:/var/www/html
proxy:
build:
context: .
dockerfile: ./devops/docker/Dockerfile.ui
environment:
APP_ENV: ${APP_ENV}
APP_URL: php:9000
ports:
- '${HTTP_PORT}:80'
- '${HTTPS_PORT}:443'
volumes:
- ./public:/var/www/html
links:
- php
depends_on:
- php
restart: always