Skip to content

Commit e8e4d3c

Browse files
committed
feat(docker-compose): Added a poetry install command to docker
1 parent 1dbc345 commit e8e4d3c

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,37 +74,37 @@ The TNS is the official IAU-recognized distributor and maintainer of the naming
7474
## Interacting with the frb-voe Server
7575

7676
```
77-
poetry run frb-voe voe [COMMAND] [OPTIONS]
77+
poetry run frbvoe voe [COMMAND] [OPTIONS]
7878
```
7979
### Send a VOEvent
8080

8181
```
82-
poetry run frb-voe voe send --help
82+
poetry run frbvoe voe send --help
8383
```
8484

8585
## Interact with the Subscriber Database
8686

8787
```
88-
poetry run frb-voe subscriber [COMMAND] [OPTIONS]
88+
poetry run frbvoe subscriber [COMMAND] [OPTIONS]
8989
```
9090
### Adding a subscriber
9191

9292
```
93-
poetry run frb-voe subscriber add --help
93+
poetry run frbvoe subscriber add --help
9494
```
9595

9696
## Interact with the TNS
9797

9898
```
99-
poetry run frb-voe tns [COMMAND] [OPTIONS]
99+
poetry run frbvoe tns [COMMAND] [OPTIONS]
100100
```
101101

102102
### Submit an FRB
103103

104104
When you have the event number of a FRB Candidate that needs to be submitted to the TNS, use the following command to acquire the TNS name.
105105

106106
```
107-
poetry run frb-voe tns submit --help
107+
poetry run frbvoe tns submit --help
108108
```
109109

110110
The help dialogue will explain what options are required and what data is needed from the user. These include:

docker-compose.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,6 @@ services:
8282
- "27017:27017"
8383
volumes:
8484
- ./frbvoe-data:/data/db
85+
install:
86+
image: python:3.8
87+
command: ["poetry", "install"]

0 commit comments

Comments
 (0)