Sign inSign up

sunwu51/fusio

By sunwu51

Updated over 8 years ago

官网的docker例子修改了,环境变量生效时机

Image
0

155

sunwu51/fusio repository overview

Fusio docker container

Official docker container of Fusio. More information about Fusio at: https://fusio-project.org

Usage

The most simple usage is to use the provided docker-compose.yml file. Use the following command to setup a mysql, memcache and fusio container.

docker-compose up -d

NOTE: You MUST change the default passwords which are defined in the docker-compose.yml file before running this container on the internet.

Run

If you dont want/can use the docker-compose command you can create and link the needed containers also manually. Therefor you need to create the following containers:

Mysql
$ docker run -d --name fusio-db \
  -e "MYSQL_ROOT_PASSWORD=7f3e5186032a" \
  -e "MYSQL_USER=fusio" \
  -e "MYSQL_PASSWORD=61ad6c605975" \
  -e "MYSQL_DATABASE=fusio" \
  mysql:5.7
Fusio
$ docker run -d --name fusio \
  -p 80:80 \
  --link fusio-db:db \
  -e "FUSIO_DB_USER=fusio" \
  -e "FUSIO_DB_PW=61ad6c605975" \
  -e "FUSIO_DB_HOST=db" \
  -e "FUSIO_DB_NAME=fusio" \
  -e "FUSIO_BACKEND_USER=demo" \
  -e "[email protected]" \
  -e "FUSIO_BACKEND_PW=c6/337d2ef_c" \
  fusio/fusio:latest

Tag summary

Content type

Image

Digest

Size

221.4 MB

Last updated

over 8 years ago

docker pull sunwu51/fusio