mirror of
https://github.com/micromdm/micromdm/
synced 2026-06-15 07:15:32 +08:00
Added internal/frontend/account to implement account management code. Added user registration templates and handlers. Set up a sqlite and postgres database in package main.
11 lines
190 B
YAML
11 lines
190 B
YAML
version: "2"
|
|
services:
|
|
postgresql:
|
|
image: postgres:latest
|
|
environment:
|
|
POSTGRES_DB: app
|
|
POSTGRES_USER: app
|
|
POSTGRES_PASSWORD: secret
|
|
ports:
|
|
- 5432:5432
|