-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose.yml
84 lines (84 loc) · 1.95 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
76
77
78
79
80
81
82
83
84
services:
ataru-dev-db:
build:
context: ./test-postgres
args:
- POSTGRESQL_VERSION=${POSTGRESQL_VERSION}
environment:
- POSTGRES_DB=ataru-dev
- POSTGRES_PASSWORD=oph
- POSTGRES_USER=oph
ports:
- "15432:5432"
networks:
- ataru-test-network
ataru-dev-redis:
image: docker.io/library/redis:${REDIS_VERSION}
ports:
- "16379:6379"
networks:
- ataru-test-network
ataru-dev-localstack:
image: localstack/localstack:${LOCALSTACK_VERSION}
ports:
- "127.0.0.1:4566:4566"
networks:
- ataru-test-network
ataru-test-db:
build:
context: ./test-postgres
args:
- POSTGRESQL_VERSION=${POSTGRESQL_VERSION}
environment:
- POSTGRES_DB=ataru-test
- POSTGRES_PASSWORD=oph
- POSTGRES_USER=oph
ports:
- "15433:5432"
networks:
- ataru-test-network
ataru-cypress-test-db:
build:
context: ./test-postgres
args:
- POSTGRESQL_VERSION=${POSTGRESQL_VERSION}
command: -p 5435
environment:
- POSTGRES_DB=ataru-test
- POSTGRES_PASSWORD=oph
- POSTGRES_USER=oph
ports:
- "5435:5435"
networks:
- ataru-test-network
ataru-cypress-http-proxy:
image: docker.io/library/nginx:${NGINX_VERSION}
ports:
- "8354:8354"
volumes:
- ./docker/ataru-cypress-http-proxy/etc/nginx:/etc/nginx
networks:
- cypress-http-proxy-network
ataru-test-ftpd:
build: ./test-ftpd
ports:
- "1221:21"
- "30000-30009:30000-30009"
networks:
- ataru-test-network
ataru-test-redis:
image: docker.io/library/redis:${REDIS_VERSION}
ports:
- "16380:6379"
networks:
- ataru-test-network
ataru-cypress-test-redis:
image: docker.io/library/redis:${REDIS_VERSION}
ports:
- "16381:6379"
networks:
- ataru-test-network
networks:
ataru-test-network:
cypress-http-proxy-network:
driver: bridge