20 lines
368 B
YAML
20 lines
368 B
YAML
version: '3'
|
|
|
|
services:
|
|
app:
|
|
image: registry.lesko.me/marek/centrum:latest
|
|
depends_on:
|
|
- db
|
|
restart: unless-stopped
|
|
network_mode: host
|
|
ports:
|
|
- "5000:5000"
|
|
|
|
db:
|
|
image: mcr.microsoft.com/mssql/server:2019-latest
|
|
restart: unless-stopped
|
|
network_mode: host
|
|
environment:
|
|
SA_PASSWORD: P@ssw0rd
|
|
ACCEPT_EULA: Y
|