All checks were successful
Build and Push Docker Image / docker (push) Successful in 8s
17 lines
388 B
YAML
17 lines
388 B
YAML
services:
|
|
messengerapi:
|
|
image: gitea.masita.net/mc/messengerapi:latest
|
|
container_name: messengerapi
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3"
|
|
ports:
|
|
- 8080:8080
|
|
restart: always
|
|
volumes:
|
|
- /mnt/config/users.conf:/app/users.conf:ro
|
|
environment:
|
|
- SQL_CONNECTIONSTRING
|
|
- CORS_ORIGINS |