All checks were successful
Build SMS Gateway / Build image (push) Successful in 11s
14 lines
265 B
YAML
14 lines
265 B
YAML
services:
|
|
sms-gateway:
|
|
build: .
|
|
container_name: sms-otp-gateway
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- ./data:/app/data
|
|
environment:
|
|
- SMS_LOGIN=admin
|
|
- SMS_PASSWORD=secret
|
|
# - BASE_PATH=/sms
|
|
restart: unless-stopped
|