Skip to content
Snippets Groups Projects
Commit d9290e33 authored by Tor-Einar Skog's avatar Tor-Einar Skog
Browse files

First working version

parents
No related branches found
No related tags found
No related merge requests found
.env
# Integration platform
[Docker compose](https://docs.docker.com/get-started/08_using_compose/)
[Environment variables in Docker compose](https://docs.docker.com/compose/environment-variables/)
\ No newline at end of file
version: '3.7'
services:
dss.api:
image: ipmdecisions/dss_api:1.0.1
hostname: dss.api
container_name: dss-api
restart: always
ports:
- 18080:8080
environment:
# MUST BE IN AN .env FILE. See https://docs.docker.com/compose/environment-variables/
- IPMDSS_ADMIN_TOKEN_MD5
- EPPO_AUTHTOKEN
wx.api:
image: ipmdecisions/weather_api:BETA-27
hostname: wx.api
container_name: wx-api
restart: always
ports:
- 18081:8080
environment:
- WEATHER_API_URL
- BEARER_TOKEN_fr_meteo-concept_api
\ No newline at end of file
# Copy this to .env and set your environment variables there
# DO NOT edit this file, as it is part of the public Git repository
# Authentication token to use when pulling data from the EPPO database web services
# EPPO_AUTHTOKEN=FooBar
# MD5 hash of the token needed to perform certain admin operations
# IPMDSS_ADMIN_TOKEN_MD5=FooBar
# URL to the weather api. Used for self referencing
# WEATHER_API_URL=https://com.foo.bar/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment