15 lines
No EOL
518 B
YAML
15 lines
No EOL
518 B
YAML
version: "3"
|
|
|
|
services:
|
|
status-page:
|
|
restart: unless-stopped
|
|
image: "git.sofiaritz.com/infrastructure/status-page:latest"
|
|
# environment:
|
|
# This contains the .css filename inside the ./styles folder. This is a comma-separated list
|
|
# ADDITIONAL_STYLES: "example"
|
|
volumes:
|
|
- ./database:/home/bun/app/database:ro
|
|
# Uncomment the following to enable additional styles inside the ./styles folder ^
|
|
# - ./styles:/home/bun/app/public/additional:ro
|
|
ports:
|
|
- "7000:7000" |