-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (30 loc) · 828 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
30 lines (30 loc) · 828 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
version: '3'
services:
coti-fullnode:
image: "coti/fullnode:3"
build:
context: repos/coti-node/
args:
MODULE: "fullnode"
ports:
- 7070:7070
volumes:
- ./data/coti-fullnode:/app/data
working_dir: /app/data
restart: unless-stopped
command: [ "java", "-jar", "/app/fullnode/target/fullnode-3.1.3.RELEASE.jar", "--spring.config.additional-location=./fullnode1.properties" ]
nginx:
image: jonasal/nginx-certbot:latest
build: repos/docker-nginx-certbot/src
restart: unless-stopped
environment:
- CERTBOT_EMAIL=<CHANGE>
- RENEWAL_INTERVAL=8d
- ELLIPTIC_CURVE=secp256r1
- RSA_KEY_SIZE=2048
ports:
- 80:80
- 443:443
volumes:
- ./data/letsencrypt:/etc/letsencrypt
- ./data/nginx:/etc/nginx/user_conf.d