docker-scripts/linux/discontinued/ecosystem/staytus
STAM 61938a770d
big rework
bump versions

updated `LazyGIT` to `0.40.2`

converterd some envs to args

sources.list fix + nextcloud updates

python fix

java fixes

python fix

java fixes

bitbucket full images
2024-02-09 13:48:51 +03:00
..
Dockerfile big rework 2024-02-09 13:48:51 +03:00
entrypoint.sh big rework 2024-02-09 13:48:51 +03:00
Makefile big rework 2024-02-09 13:48:51 +03:00
README.md big rework 2024-02-09 13:48:51 +03:00

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