mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-21 14:49:07 +00:00
fix docker compose files
This commit is contained in:
parent
42f8a90eeb
commit
c0153f0ecb
@ -131,7 +131,6 @@ services:
|
||||
notification:
|
||||
networks:
|
||||
- oneuptime
|
||||
image: oneuptime/notification:${APP_TAG}
|
||||
restart: always
|
||||
environment:
|
||||
<<: *common-server-variables
|
||||
@ -155,7 +154,6 @@ services:
|
||||
accounts:
|
||||
networks:
|
||||
- oneuptime
|
||||
image: oneuptime/accounts:${APP_TAG}
|
||||
restart: always
|
||||
environment:
|
||||
<<: *common-ui-variables
|
||||
@ -167,7 +165,6 @@ services:
|
||||
dashboard:
|
||||
networks:
|
||||
- oneuptime
|
||||
image: oneuptime/dashboard:${APP_TAG}
|
||||
restart: always
|
||||
environment:
|
||||
<<: *common-ui-variables
|
||||
@ -181,7 +178,6 @@ services:
|
||||
status-page:
|
||||
networks:
|
||||
- oneuptime
|
||||
image: oneuptime/status-page:${APP_TAG}
|
||||
restart: always
|
||||
environment:
|
||||
<<: *common-ui-variables
|
||||
@ -195,7 +191,6 @@ services:
|
||||
dashboard-api:
|
||||
networks:
|
||||
- oneuptime
|
||||
image: oneuptime/dashboard-api:${APP_TAG}
|
||||
restart: always
|
||||
environment:
|
||||
<<: *common-server-variables
|
||||
@ -214,7 +209,6 @@ services:
|
||||
link-shortner:
|
||||
networks:
|
||||
- oneuptime
|
||||
image: oneuptime/link-shortner:${APP_TAG}
|
||||
restart: always
|
||||
environment:
|
||||
<<: *common-server-variables
|
||||
@ -230,7 +224,6 @@ services:
|
||||
workflow:
|
||||
networks:
|
||||
- oneuptime
|
||||
image: oneuptime/workflow:${APP_TAG}
|
||||
restart: always
|
||||
environment:
|
||||
<<: *common-server-variables
|
||||
@ -248,7 +241,6 @@ services:
|
||||
workers:
|
||||
networks:
|
||||
- oneuptime
|
||||
image: oneuptime/workers:${APP_TAG}
|
||||
restart: always
|
||||
environment:
|
||||
<<: *common-server-variables
|
||||
@ -268,7 +260,6 @@ services:
|
||||
probe-1:
|
||||
networks:
|
||||
- oneuptime
|
||||
image: oneuptime/probe:${APP_TAG}
|
||||
restart: always
|
||||
environment:
|
||||
<<: *common-server-variables
|
||||
@ -285,7 +276,6 @@ services:
|
||||
probe-2:
|
||||
networks:
|
||||
- oneuptime
|
||||
image: oneuptime/probe:${APP_TAG}
|
||||
restart: always
|
||||
environment:
|
||||
<<: *common-server-variables
|
||||
@ -303,7 +293,6 @@ services:
|
||||
identity:
|
||||
networks:
|
||||
- oneuptime
|
||||
image: oneuptime/identity:${APP_TAG}
|
||||
restart: always
|
||||
environment:
|
||||
<<: *common-server-variables
|
||||
@ -322,7 +311,6 @@ services:
|
||||
probe-api:
|
||||
networks:
|
||||
- oneuptime
|
||||
image: oneuptime/probe-api:${APP_TAG}
|
||||
restart: always
|
||||
environment:
|
||||
<<: *common-server-variables
|
||||
@ -340,7 +328,6 @@ services:
|
||||
file:
|
||||
networks:
|
||||
- oneuptime
|
||||
image: oneuptime/file:${APP_TAG}
|
||||
restart: always
|
||||
environment:
|
||||
<<: *common-server-variables
|
||||
@ -358,7 +345,7 @@ services:
|
||||
environment:
|
||||
<<: *common-ui-variables
|
||||
PORT: ${HOME_PORT}
|
||||
image: oneuptime/home:${APP_TAG}
|
||||
|
||||
|
||||
|
||||
api-reference:
|
||||
@ -368,7 +355,6 @@ services:
|
||||
environment:
|
||||
<<: *common-ui-variables
|
||||
PORT: ${API_DOCS_PORT}
|
||||
image: oneuptime/api-reference:${APP_TAG}
|
||||
|
||||
|
||||
nginx:
|
||||
|
@ -219,6 +219,10 @@ services:
|
||||
extends:
|
||||
file: ./docker-compose.base.yml
|
||||
service: workers
|
||||
build:
|
||||
network: host
|
||||
context: .
|
||||
dockerfile: ./Workers/Dockerfile
|
||||
|
||||
|
||||
|
||||
@ -317,6 +321,10 @@ services:
|
||||
extends:
|
||||
file: ./docker-compose.base.yml
|
||||
service: file
|
||||
build:
|
||||
network: host
|
||||
context: .
|
||||
dockerfile: ./File/Dockerfile
|
||||
|
||||
|
||||
|
||||
|
@ -23,17 +23,20 @@ services:
|
||||
service: postgres
|
||||
|
||||
notification:
|
||||
image: oneuptime/notification:${APP_TAG}
|
||||
extends:
|
||||
file: ./docker-compose.base.yml
|
||||
service: notification
|
||||
|
||||
accounts:
|
||||
image: oneuptime/accounts:${APP_TAG}
|
||||
extends:
|
||||
file: ./docker-compose.base.yml
|
||||
service: accounts
|
||||
|
||||
|
||||
dashboard:
|
||||
image: oneuptime/dashboard:${APP_TAG}
|
||||
extends:
|
||||
file: ./docker-compose.base.yml
|
||||
service: dashboard
|
||||
@ -41,6 +44,7 @@ services:
|
||||
|
||||
|
||||
status-page:
|
||||
image: oneuptime/status-page:${APP_TAG}
|
||||
extends:
|
||||
file: ./docker-compose.base.yml
|
||||
service: status-page
|
||||
@ -48,6 +52,7 @@ services:
|
||||
|
||||
|
||||
dashboard-api:
|
||||
image: oneuptime/dashboard-api:${APP_TAG}
|
||||
extends:
|
||||
file: ./docker-compose.base.yml
|
||||
service: dashboard-api
|
||||
@ -55,18 +60,21 @@ services:
|
||||
|
||||
|
||||
link-shortner:
|
||||
image: oneuptime/link-shortner:${APP_TAG}
|
||||
extends:
|
||||
file: ./docker-compose.base.yml
|
||||
service: link-shortner
|
||||
|
||||
|
||||
workflow:
|
||||
image: oneuptime/workflow:${APP_TAG}
|
||||
extends:
|
||||
file: ./docker-compose.base.yml
|
||||
service: workflow
|
||||
|
||||
|
||||
workers:
|
||||
image: oneuptime/workers:${APP_TAG}
|
||||
extends:
|
||||
file: ./docker-compose.base.yml
|
||||
service: workers
|
||||
@ -74,16 +82,19 @@ services:
|
||||
|
||||
|
||||
probe-1:
|
||||
image: oneuptime/probe:${APP_TAG}
|
||||
extends:
|
||||
file: ./docker-compose.base.yml
|
||||
service: probe-1
|
||||
|
||||
probe-2:
|
||||
probe-2:
|
||||
image: oneuptime/probe:${APP_TAG}
|
||||
extends:
|
||||
file: ./docker-compose.base.yml
|
||||
service: probe-2
|
||||
|
||||
identity:
|
||||
image: oneuptime/identity:${APP_TAG}
|
||||
extends:
|
||||
file: ./docker-compose.base.yml
|
||||
service: identity
|
||||
@ -91,25 +102,29 @@ services:
|
||||
|
||||
|
||||
probe-api:
|
||||
image: oneuptime/probe-api:${APP_TAG}
|
||||
extends:
|
||||
file: ./docker-compose.base.yml
|
||||
service: probe-api
|
||||
|
||||
|
||||
file:
|
||||
extends:
|
||||
image: oneuptime/file:${APP_TAG}
|
||||
extends:
|
||||
file: ./docker-compose.base.yml
|
||||
service: file
|
||||
|
||||
|
||||
|
||||
home:
|
||||
image: oneuptime/home:${APP_TAG}
|
||||
extends:
|
||||
file: ./docker-compose.base.yml
|
||||
service: home
|
||||
|
||||
|
||||
api-reference:
|
||||
image: oneuptime/api-reference:${APP_TAG}
|
||||
extends:
|
||||
file: ./docker-compose.base.yml
|
||||
service: api-reference
|
||||
|
Loading…
Reference in New Issue
Block a user