All checks were successful
Create and publish a Docker image / Publish image (push) Successful in 6m31s
16 lines
452 B
YAML
16 lines
452 B
YAML
services:
|
|
app:
|
|
container_name: ModeusSchedule.MSAuth
|
|
build:
|
|
context: ./src
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- '5000:8080'
|
|
environment:
|
|
- MODEUS_URL=${MODEUS_URL}
|
|
- MS_USERNAME=${MS_USERNAME}
|
|
- MS_PASSWORD=${MS_PASSWORD}
|
|
- API_KEY=${API_KEY}
|
|
- MS_TOTP_SECRET=${MS_TOTP_SECRET}
|
|
restart: unless-stopped
|