mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-26 14:45:42 +03:00
STAM
511a8a115a
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 |
||
---|---|---|
.. | ||
Dockerfile | ||
entrypoint.sh | ||
Makefile | ||
README.md |
Info
This is a custom improved image from this original repository.
How to
- Install databese and setup user
- Install container and connect to database
- dont forget about static files!
/opt/staytus/public/assets
Compose example
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