All-in-one alpine-based Streama image.
238

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.
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
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
Content type
Image
Digest
Size
135.2 MB
Last updated
over 8 years ago
docker pull skaro13/docker-streama