-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (32 loc) · 867 Bytes
/
docker-compose.yml
File metadata and controls
34 lines (32 loc) · 867 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
services:
simple-store:
container_name: simple-object-store
#image: sedrad/simplestore:latest
build:
context: .
dockerfile: SimpleStore/Dockerfile
volumes:
- ./data:/data
ports:
- '5000:80'
simple-store-ui:
container_name: simple-store-admin
#image: sedrad/simplestore-admin:latest
depends_on:
- simple-store
volumes:
- ./keys:/root/.aspnet/DataProtection-Keys
build:
context: .
dockerfile: SimpleStore.Admin/Dockerfile
environment:
- API__Endpoint=${API_ENDPOINT}
- API__Key=${API_KEY}
- OpenId__Authority=${OPENID_AUTHORITY}
- OpenId__ClientId=${OPENID_CLIENT_ID}
- OpenId__ClientSecret=${OPENID_CLIENT_SECRET}
- DisableHttpsMetadata=true
ports:
- '5001:80'
extra_hosts:
- "host.docker.internal:host-gateway"