-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (36 loc) · 814 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
40 lines (36 loc) · 814 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
version: '3.9'
services:
evently.api:
image: ${DOCKER_REGISTRY-}eventlyapi
container_name: Evently.Api
build:
context: .
dockerfile: src/API/Evently.Api/Dockerfile
ports:
- 5000:8080
- 5001:8081
evently.database:
image: postgres:latest
container_name: Evently.Database
environment:
- POSTGRES_DB=evently
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
volumes:
- ./.containers/db:/var/lib/postgresql/data
ports:
- 5432:5432
evently.seq:
image: datalust/seq:latest
container_name: Evently.Seq
environment:
- ACCEPT_EULA=Y
ports:
- 5341:5341
- 8081:80
evently.redis:
image: redis:latest
container_name: Evently.Redis
restart: always
ports:
- 6379:6379