-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Not very good but at least im working on something
- Loading branch information
1 parent
dc6499a
commit d0388d5
Showing
6 changed files
with
50 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<div id="logbook" class="logbook"> | ||
<div id="system" class="system"> | ||
<table> | ||
<tr> | ||
<th>t-</th> | ||
|
14 changes: 14 additions & 0 deletions
14
Houston-UI/MissionController/templates/windows/system.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<div id="logbook" class="logbook"> | ||
<table> | ||
<tr> | ||
<th>Container</th> | ||
<th>Version</th> | ||
<th>Health</th> | ||
</tr> | ||
<tr> | ||
<td>Houston-UI</td> | ||
<td>None</td> | ||
<td>Healthy</td> | ||
</tr> | ||
</table> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,34 @@ | ||
version: '3.7' | ||
version: "3.7" | ||
|
||
services: | ||
# db: | ||
# image: postgres:10.5 | ||
# restart: always | ||
# environment: | ||
# - POSTGRES_USER=postgres | ||
# - POSTGRES_PASSWORD=postgres | ||
# - POSTGRES_DB=snub_db | ||
# logging: | ||
# options: | ||
# max-size: 10m | ||
# max-file: "3" | ||
db: | ||
image: postgres:latest | ||
restart: "no" | ||
environment: | ||
- POSTGRES_USER=postgres | ||
- POSTGRES_PASSWORD=postgres | ||
- POSTGRES_DB=snub_db | ||
logging: | ||
options: | ||
max-size: 10m | ||
max-file: "3" | ||
ports: | ||
- "5438:5432" | ||
tmpfs: /var/lib/postgresql/data | ||
|
||
# adminer: | ||
# image: adminer | ||
# restart: "no" | ||
# ports: | ||
# - '5438:5432' | ||
# tmpfs: /var/lib/postgresql/data | ||
# - 8080:8081 | ||
|
||
Houston-UI: | ||
image: houston_ui:$TAG | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
# links: | ||
# - "db:database" | ||
links: | ||
- "db:database" | ||
ports: | ||
- '8080:8080' | ||
- "8080:8080" | ||
restart: "no" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
version: '3.8' | ||
version: "3.8" | ||
|
||
services: | ||
MissionController: | ||
|