kwmiebach
08/17/2022, 9:12 AMJenny
08/17/2022, 9:15 AMkwmiebach
08/17/2022, 12:35 PMJenny
08/17/2022, 12:44 PMMarvin
08/17/2022, 12:45 PMEvan Sutherland
08/17/2022, 1:57 PMprefect profiles
can help here. When you run if you define your backend variable in a profile, when you use prefect profile use YOUR_PROFILE_NAME
it will try to establish a connection and report back the statusSam Pibworth
08/23/2022, 4:47 PMkwmiebach
09/02/2022, 2:12 PMversion: "3.7"
services:
orion:
container_name: orion
image: prefecthq/prefect:2.0.4-python3.7
#image: prefecthq/prefect:2.0b6-python3.10
ports:
- 4208:4200
environment:
PREFECT_ORION_API_HOST: 127.0.0.1
PREFECT_ORION_API_PORT: 4200
#PREFECT_API_URL: <http://0.0.0.0:4200/api>
PREFECT_ORION_UI_API_URL: <http://pc5:4208/api>
command: prefect orion start --host 0.0.0.0 --port 4200
#command: tail -f /dev/random >> /dev/null
cisextract:
container_name: cisextract
image: <http://registry.gitlab.com/hbs-team/intranet/mp24-intranet/cisextract:latest|registry.gitlab.com/hbs-team/intranet/mp24-intranet/cisextract:latest>
user: 1000:1000
ports:
- 8007:8000/tcp
- 3007:3000/tcp
- 4207:4200
depends_on:
- orion
environment:
PREFECT_API_URL: <http://orion:4200/api>
volumes:
- ./arzt:/app
- ../cistransform/cache:/cache
- ./prefect:/home/webroot/.prefect
command: tail -f /dev/random >> /dev/null
redcisload:
container_name: redcisextract
image: <http://registry.gitlab.com/hbs-team/intranet/mp24-intranet-red/red:latest|registry.gitlab.com/hbs-team/intranet/mp24-intranet-red/red:latest>
ports:
- 1870:1880/tcp
depends_on:
- cisextract
volumes:
- ./red/data:/data
- ./red/.ssh:/usr/src/node-red/.ssh
- /var/sambashare:/sambashare
Sam Pibworth
09/02/2022, 3:50 PM