-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.tools.yml
More file actions
41 lines (41 loc) · 1022 Bytes
/
docker-compose.tools.yml
File metadata and controls
41 lines (41 loc) · 1022 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
37
38
39
40
41
services:
portainer:
container_name: tools_portainer
extends:
file: ./services/portainer/docker-compose.yml
service: portainer
traefik:
container_name: ${APP_TRAEFIK_CONTAINER_NAME:-tools_traefik}
extends:
file: ./services/traefik/docker-compose.yml
service: proxy
mailpit:
container_name: ${APP_MAILPIT_CONTAINER:-tools_mailpit}
extends:
file: ./services/mailpit/docker-compose.yml
service: smtp
redis:
container_name: tools_redis
extends:
file: ./services/redis/docker-compose.yml
service: redis
jenkins:
extends:
file: ./services/jenkins/docker-compose.yml
service: jenkins
beekeeper:
extends:
file: ./services/beekeeper-studio/docker-compose.yml
service: beekeeper
volumes:
cache:
name: redis_cache
driver: local
portainer_data:
networks:
app_network:
name: ${APP_NETWORK_NAME:-app_network}
driver: bridge
attachable: true
enable_ipv4: true
enable_ipv6: false