workadventure/deeployer.json

22 lines
628 B
JSON
Raw Normal View History

2020-04-09 11:00:30 +02:00
{
"$schema": "https://raw.githubusercontent.com/thecodingmachine/deeployer/master/deeployer.schema.json",
"containers": {
"back": {
2020-04-09 15:10:44 +02:00
"image": "thecodingmachine/workadventure-back:cd",
2020-04-11 12:27:03 +02:00
"host": "api.workadventure.test.thecodingmachine.com",
2020-04-09 15:10:44 +02:00
"ports": [8080],
2020-04-09 11:00:30 +02:00
"env": {
"SECRET_KEY": "tempSecretKeyNeedsToChange"
}
},
"front": {
2020-04-09 15:10:44 +02:00
"image": "thecodingmachine/workadventure-front:cd",
2020-04-11 12:27:03 +02:00
"host": "workadventure.test.thecodingmachine.com",
2020-04-09 15:10:44 +02:00
"ports": [80],
2020-04-09 11:00:30 +02:00
"env": {
"API_URL": "http://api.workadventure.test.thecodingmachine.com"
}
}
}
}