To run admin panel, run docker image:
docker run --env-file=<env_file> -it --network <tribalizm|host> admin:1.0
Network host is when developing locally.
NOTE: you have to read all environment variables, eg. with set-env ./.env.develop
where set-env
is bash alias:
set-env(){
file="${1:-.env}"
export $(egrep -v '^#' "${file}" | xargs)
}