14 lines
490 B
YAML
14 lines
490 B
YAML
|
version: "3"
|
||
|
|
||
|
services:
|
||
|
status-page:
|
||
|
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"
|