-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrpi-stack.yml
37 lines (34 loc) · 862 Bytes
/
rpi-stack.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
version: "3.1"
services:
puts:
image: benasbudrys/putsweb
restart: always
ports:
- 8000:5001
volumes:
- keys:/app/Keys
- ~/.aspnet/https:/https:ro
depends_on:
- db
environment:
ConnectionStrings__ProblemDatabase: $ConnectionStrings__ProblemDatabase
ASPNETCORE_Kestrel__Certificates__Default__Password: $ASPNETCORE_Kestrel__Certificates__Default__Password
ASPNETCORE_Kestrel__Certificates__Default__Path: $ASPNETCORE_Kestrel__Certificates__Default__Path
ASPNETCORE_URLS: https://+:5001
db:
image: jsurf/rpi-mariadb
restart: always
ports:
- 8001:3306
volumes:
- db-data:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: $MYSQL_ROOT_PASSWORD
adminer:
image: adminer
restart: always
ports:
- 8002:8080
volumes:
db-data:
keys: