Get docker-compose working again

This commit is contained in:
James Wilson
2021-07-09 19:40:52 +01:00
parent ea52d36999
commit 11c0db389a
+7 -5
View File
@@ -17,9 +17,10 @@ services:
build:
dockerfile: shard.Dockerfile
context: ./backend/
environment:
- PORT=8001
command: ['--core', 'http://telemetry-backend-core:8000']
command: [
'--listen', '0.0.0.0:8001',
'--core', 'http://telemetry-backend-core:8000/shard_submit'
]
ports:
- 8001:8001
expose:
@@ -28,8 +29,9 @@ services:
build:
dockerfile: telemetry.Dockerfile
context: ./backend/
environment:
- PORT=8000
command: [
'--listen', '0.0.0.0:8000'
]
ports:
- 8000:8000
expose: