Skip to content

Commit

Permalink
fix: missing generate docker-compose in ui
Browse files Browse the repository at this point in the history
  • Loading branch information
ActivePeter committed Jun 13, 2024
1 parent fcdcaa4 commit a1e7fe7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
8 changes: 7 additions & 1 deletion pa_note_front/script/docker_dev_2gencompose.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,10 @@ def os_system(command):
volumes:
- .:/usr/src/app
command: bash docker_run_dev_entry.sh
"""
"""

with open("docker_run_dev_entry.sh","w") as f:
f.write(ENTRY)

with open("docker-compose.yml","w") as f:
f.write(COMPOSE)
2 changes: 1 addition & 1 deletion script/files/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
authority_config.json
#authority_config.json
5 changes: 0 additions & 5 deletions script/files/authority_config.json

This file was deleted.

0 comments on commit a1e7fe7

Please sign in to comment.