mirror of
https://github.com/micromdm/micromdm/
synced 2026-08-12 04:55:39 +08:00
17 lines
315 B
YAML
17 lines
315 B
YAML
redis:
|
|
image: redis
|
|
restart: always
|
|
ports:
|
|
- "6379:6379"
|
|
|
|
postgres:
|
|
image: postgres
|
|
restart: always
|
|
environment:
|
|
- POSTGRES_USER=micromdm
|
|
- POSTGRES_PASSWORD=micromdm
|
|
- POSTGRES_DB=micromdm
|
|
- SSLMODE=disable
|
|
ports:
|
|
- "127.0.0.1:5432:5432"
|