docker-scripts/_experemental/staytus
2019-10-02 02:01:55 +03:00
..
.docker-repository.yml staytus 2019-10-02 02:01:55 +03:00
.dockerignore staytus 2019-10-02 02:01:55 +03:00
Dockerfile staytus 2019-10-02 02:01:55 +03:00
entrypoint.sh staytus 2019-10-02 02:01:55 +03:00
Makefile staytus 2019-10-02 02:01:55 +03:00
README.md staytus 2019-10-02 02:01:55 +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

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