Skip to content
This repository was archived by the owner on Jul 4, 2024. It is now read-only.

Commit 1460770

Browse files
authored
[fix] fixing svg not display issue
[fix] fixing svg not display issue
2 parents a16eddb + 33cf3bd commit 1460770

20 files changed

+1647
-150
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111
# Output of the go coverage tool, specifically when used with LiteIDE
1212
*.out
1313

14-
# Swagger
15-
docs/
16-
1714
# config files
1815
config.yaml
1916
config.toml

docker-compose.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: "3"
2+
3+
services:
4+
dashboard:
5+
image: xpunch/go-micro-dashboard:latest
6+
container_name: go-micro-dashboard
7+
ports:
8+
- "4000:4000"
9+
environment:
10+
- MICRO_REGISTRY=etcd
11+
- MICRO_REGISTRY_ADDRESS=etcd
12+
- CONFIG_TYPE=yaml
13+
- CONFIG_FILE=/etc/micro/dashboard.yaml
14+
volumes:
15+
- "./config.yaml:/etc/micro/dashboard.yaml"

0 commit comments

Comments
 (0)