-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
33 lines (30 loc) · 1.02 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
version: "3.7"
services:
#############################################################################################
### PCI Gateway ###
#############################################################################################
pci-gateway:
container_name: pci-gateway
hostname: pci-gateway
build:
context: ./src/pci-gateway
ports:
- "8080:8080"
environment:
- "spring_profiles_active=local"
networks:
- pcigw-net
#############################################################################################
### Http bin (used for testing) ###
#############################################################################################
http-bin:
container_name: http-bin
hostname: http-bin
image: kennethreitz/httpbin
ports:
- "8081:80"
networks:
- pcigw-net
networks:
pcigw-net:
driver: "bridge"