Skip to content

Commit

Permalink
ci: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
BrooksYang committed Mar 19, 2024
1 parent f7b6782 commit 505a093
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build/docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ networks:
services:
apiserver:
image: ${APP_NAME}-apiserver:${APP_VERSION}
container_name: ${APP_NAME}/apiserver
container_name: ${APP_NAME}-apiserver
restart: always
build:
context: ../../
Expand All @@ -24,7 +24,7 @@ services:
promtail:
restart: always
image: grafana/promtail
container_name: ${APP_NAME}/promtail
container_name: ${APP_NAME}-promtail
hostname: promtail
user: root
networks:
Expand All @@ -38,7 +38,7 @@ services:

mysql:
image: mysql
container_name: ${APP_NAME}/mysql
container_name: ${APP_NAME}-mysql
restart: always
command: mysqld --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
networks:
Expand All @@ -54,7 +54,7 @@ services:
redis:
restart: always
image: redis
container_name: ${APP_NAME}/redis
container_name: ${APP_NAME}-redis
networks:
- bingo
ports:
Expand Down

0 comments on commit 505a093

Please sign in to comment.