From 890d9629f516d9b060e827706e9a88c13e9f0f06 Mon Sep 17 00:00:00 2001 From: CattySteve Date: Wed, 1 May 2024 16:57:43 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=9E=84=E5=BB=BA=E6=96=B9?= =?UTF-8?q?=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + GalaxyMusicHall_Backend | 2 +- docker-compose.yml | 8 +++++++- 3 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..67f61a4 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +instance \ No newline at end of file diff --git a/GalaxyMusicHall_Backend b/GalaxyMusicHall_Backend index 7173bcf..0b99f23 160000 --- a/GalaxyMusicHall_Backend +++ b/GalaxyMusicHall_Backend @@ -1 +1 @@ -Subproject commit 7173bcfa75a7bb66ec2c7b713ff823b4e4993ed4 +Subproject commit 0b99f237c779dbd885788fcb0b8b2a5e38d3c601 diff --git a/docker-compose.yml b/docker-compose.yml index f9f1b65..c31bfd1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,7 +3,13 @@ services: build: ./GalaxyMusicHall_Backend ports: - 5001:5001 + volumes: + - ./instance:/opt/galaxy/instance galaxy_frontend: build: ./GalaxyMusicHall_TSFrontend ports: - - 5002:5002 \ No newline at end of file + - 5002:5002 + links: + - galaxy_backend + depends_on: + - galaxy_backend \ No newline at end of file