-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
executable file
·75 lines (68 loc) · 1.67 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
version: '2.4'
#volumes:
# postgres-data: {}
# networks:
# technicals:
# driver: bridge
# ipam:
# driver: default
# config:
# - subnet: 172.11.0.0/16
# driver_opts:
# com.docker.network.bridge.name: br_technicals
services:
portainer:
image: portainer/portainer-ce
container_name: portainer
restart: always
command: -H unix:///var/run/docker.sock
ports:
- "9000:9000"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- $DOCKER_PATH/portainer-ce/data:/data
environment:
TZ: $TZ
PUID: $PUID
PGID: $PGID
# networks:
# technicals:
# ipv4_address: '172.11.0.110'
# fleetio:
# container_name: fleetio
# image: postgres
# environment:
# PUID: $PUID
# PGID: $PGID
# TZ: $TZ
# POSTGRES_DB: fleetio
# POSTGRES_PASSWORD: admin
# POSTGRES_USER: admin
# PGDATA: /var/lib/postgresql/data/fleetio
# restart: always
# volumes:
# - $DOCKER_PATH/postgres/etc:/etc/postgresql
# - $DOCKER_PATH/postgres/log:/var/log/postgresql
# - $DOCKER_PATH/postgres:/var/lib/postgresql
# ports:
# - 1234:5432
# # networks:
# # technicals:
# # ipv4_address: '172.11.0.111'
dozzle:
container_name: dozzle
image: amir20/dozzle:latest
environment:
PUID: $PUID
PGID: $PGID
TZ: $TZ
volumes:
- /var/run/docker.sock:/var/run/docker.sock
ports:
- 9999:8080
labels:
autoheal: $AUTOHEAL_RESTART
restart: always
# networks:
# technicals:
# ipv4_address: '172.11.0.112'