workadventure/deeployer.json
2020-04-11 12:27:03 +02:00

22 lines
628 B
JSON

{
"$schema": "https://raw.githubusercontent.com/thecodingmachine/deeployer/master/deeployer.schema.json",
"containers": {
"back": {
"image": "thecodingmachine/workadventure-back:cd",
"host": "api.workadventure.test.thecodingmachine.com",
"ports": [8080],
"env": {
"SECRET_KEY": "tempSecretKeyNeedsToChange"
}
},
"front": {
"image": "thecodingmachine/workadventure-front:cd",
"host": "workadventure.test.thecodingmachine.com",
"ports": [80],
"env": {
"API_URL": "http://api.workadventure.test.thecodingmachine.com"
}
}
}
}