We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19d15a8 commit 6aec9d9Copy full SHA for 6aec9d9
1 file changed
deploy/docker-compose.yml
@@ -0,0 +1,15 @@
1
+version: '3.7'
2
+
3
+# This provides a simple example frontend that can view and schedule Requests using
4
+# the Observation Portal API backend and components from the ocs-component-lib.
5
+services:
6
+ obs_portal_frontend:
7
+ image: observatorycontrolsystem/ocs-example-frontend:0.1.0
8
+ ports:
9
+ - "8080:8080"
10
+ restart: always
11
+ environment:
12
+ # These addresses should point to your Observation Portal backend deployment
13
+ - VUE_APP_OBSERVATION_PORTAL_API_URL=http://127.0.0.1:8000
14
+ - INTERNAL_OBSERVATION_PORTAL_API_URL=http://127.0.0.1:8000
15
+ entrypoint: /entrypoint.sh
0 commit comments