-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (36 loc) · 843 Bytes
/
docker-compose.yml
File metadata and controls
40 lines (36 loc) · 843 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
volumes:
aspnetcore-identity-postgres: {}
services:
database:
image: postgres
container_name: postgres
hostname: postgres
shm_size: 128mb
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
ports:
- "5432:5432"
volumes:
- aspnetcore-identity-postgres:/var/lib/postgresql/data
adminer:
image: adminer
container_name: adminer
hostname: adminer
ports:
- "5433:8080"
depends_on:
- database
links:
- database
aspnetcore.identity:
image: ${DOCKER_REGISTRY-}aspnetcoreidentity
container_name: ${DOCKER_REGISTRY-}aspnetcoreidentity
hostname: ${DOCKER_REGISTRY-}aspnetcoreidentity
depends_on:
- database
links:
- database
build:
context: .
dockerfile: AspNetCore.Identity/Dockerfile