forked from null-burn/nginx-proxy-manager-goaccess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
37 lines (35 loc) · 851 Bytes
/
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
version: "3"
networks:
nginx_proxy_manager:
ipam:
config:
- subnet: 172.20.0.0/24
services:
app:
image: 'jc21/nginx-proxy-manager:latest'
container_name: nginx_proxy
restart: always
ports:
- '80:80'
- '443:443'
# Admin Web Port:
- '81:81'
environment:
DB_SQLITE_FILE: "/data/database.sqlite"
# Uncomment this if IPv6 is not enabled on your host
DISABLE_IPV6: 'true'
volumes:
- ./nginx_proxy/data:/data
- ./nginx_proxy/letsencrypt:/etc/letsencrypt
networks:
nginx_proxy_manager:
ipv4_address: 172.20.0.2
goaccess:
image: gregyankovoy/goaccess
container_name: goaccess
restart: always
ports:
- '7889:7889'
volumes:
- ./nginx_proxy/data/logs:/opt/log
- ./goaccess/storage:/config