docker-scripts/linux/discontinued/staytus/README.md
STAM 511a8a115a
infrastructure improvements + drop ASTRA SE\CE 1.7 support
update requirements.txt


github actions runs-on: ubuntu-24.04



make pip fix

- failsafe
- systemwide

zabbix 7 + zabbix fixes

cleanup

ci

wip: fixes, nginx update, support update

wip: bookworm 12 base updates

wip: requirements.txt cleanup

zabbix USER fix

WIP: debian 12 develop improvements
2024-08-17 16:55:42 +03:00

38 lines
781 B
Markdown

## Info
This is a custom improved image from this [original repository](https://github.com/adamcooke/staytus).
## How to
* Install databese and setup user
* Install container and connect to database
* dont forget about static files! `/opt/staytus/public/assets`
## Compose example
```yml
version: '3.7'
services:
mysql:
container_name: mysql
image: mysql:5.7
restart: always
staytus:
container_name: staytus
image: epicmorg/staytus
restart: always
ports:
- "5000:5000"
volumes:
- staytus-persisted:/opt/staytus/persisted
environment:
- DB_USER=root
- DB_PASSWORD=password
- DB_HOST=mysql #(dns or ip)
depends_on:
- mysql
tmpfs:
- /tmp
volumes:
staytus-persisted:
external: true
```