Sign inSign up

skaro13/docker-streama

By skaro13

•Updated over 8 years ago

All-in-one alpine-based Streama image.

Image
0

238

skaro13/docker-streama repository overview

⁠skaro13/docker-streama

Streama Banner

⁠Usage

Two options are available for database. The H2 database which will be created in the /config directory and the MySQL option which allows you to link streama to an existing MySQL container.

⁠H2 Database

docker create \
    --name streama \
    -p 8080:8080 \
    -e UID=<UID> \
    -e GID=<GID> \
    -e DB_TYPE=h2 \
    -v </path/to/upload>:/upload \
    -v <path/to/config>:/config \
    skaro13/streama

⁠MySQL Database

docker create \
    --name streama \
    --link mysql:mysql \
    -p 8080:8080 \
    -e UID=<UID> \
    -e GID=<GID> \
    -e DB_TYPE=mysql \
    -e DB_HOST=mysql \
    -e DB_USER=streama \
    -e DB_PASSWORD=streama \
    -e DB_NAME=streama \
    -v </path/to/upload>:/upload \
    -v <path/to/config>:/config \
    skaro13/streama

Tag summary

Content type

Image

Digest

Size

135.2 MB

Last updated

over 8 years ago

docker pull skaro13/docker-streama