-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-gradle.yaml
30 lines (27 loc) · 1.05 KB
/
docker-compose-gradle.yaml
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: "2.1"
services:
gradle-apache-camel-spring-boot-1-x-app:
build:
context: .
dockerfile: gradle/Dockerfile
volumes:
- "/tmp/camel-in:/tmp/camel-in:rw"
- "/tmp/camel-out:/tmp/camel-out:rw"
- "/tmp/camel-jms-in:/tmp/camel-jms-in:rw"
- "/tmp/camel-jms-out:/tmp/camel-jms-out:rw"
- "/tmp/camel-filename-in:/tmp/camel-filename-in:rw"
- "/tmp/camel-filename-out:/tmp/camel-filename-out:rw"
- "/tmp/camel-exchange-in:/tmp/camel-exchange-in:rw"
- "/tmp/camel-exchange-out:/tmp/camel-exchange-out:rw"
- "/tmp/camel-easier-exchange-in:/tmp/camel-easier-exchange-in:rw"
- "/tmp/camel-easier-exchange-out:/tmp/camel-easier-exchange-out:rw"
- "/tmp/camel-choice-in:/tmp/camel-choice-in:rw"
- "/tmp/camel-choice-out:/tmp/camel-choice-out:rw"
- "/tmp/camel-choice-error:/tmp/camel-choice-error:rw"
- "/tmp/camel-spring-integration-in:/tmp/camel-spring-integration-in:rw"
ports: ["8080:8080"]
networks: [backing-services]
restart: unless-stopped
networks:
backing-services:
driver: bridge