-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
49 lines (48 loc) · 1.06 KB
/
docker-compose.yml
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
49
version: "2"
services:
proxy:
image: ghcr.io/maxjr2/nrs-nginx:stable
networks:
- nred_proxy-net
ports:
- 80:80
- 443:443
volumes:
- ./proxy_config:/etc/nginx/conf.d
- ./host_privates:/etc/ssl/private:rw
- ./host_certs:/etc/ssl/certs:rw
portainer:
image: portainer/portainer-ce:latest
container_name: portainer
restart: unless-stopped
security_opt:
- no-new-privileges:true
volumes:
- /etc/localtime:/etc/localtime:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
- ./portainer-data:/data
networks:
- nred_proxy-net
node-red:
container_name: node-red
image: nodered/node-red:latest
environment:
- TZ=Europe/Berlin
networks:
- nred_proxy-net
volumes:
- ./nodered-data:/data
statping:
container_name: statping
image: statping/statping
restart: always
volumes:
- ./statping-data:/app
environment:
DB_CONN: sqlite
networks:
- nred_proxy-net
networks:
nred_proxy-net:
volumes:
nodered-data: