mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-01 08:09:59 +01:00
7873a0312a
1. Update the nginx.conf 2. Update Makefile 3. Update docker-compose 4. Update image name 5. Rename folder ui to core 6. Change the harbor-ui's package name to core 7. Remove unused static file on harbor-core 8. Remove unused code for harbor-portal Signed-off-by: Qian Deng <dengq@vmware.com>
12 lines
270 B
Bash
Executable File
12 lines
270 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# run admiral for unit test
|
|
name=admiral
|
|
port=8282
|
|
docker rm -f $name 2>/dev/null
|
|
docker run -d -p $port:8282 --name $name vmware/admiral:v1.2.1
|
|
|
|
# solution user token file for test
|
|
mkdir -p /etc/core/token/
|
|
echo "token" > /etc/core/token/tokens.properties
|