Move Dockerfile in the docker directory

This commit is contained in:
Konstantinos Sideris 2018-01-02 14:29:38 +02:00
parent dadd85ba07
commit b63f1e9311
2 changed files with 10 additions and 10 deletions

View file

@ -4,7 +4,7 @@ services:
container_name: dendrite_monolith container_name: dendrite_monolith
hostname: monolith hostname: monolith
entrypoint: ["bash", "./docker/services/monolith.sh"] entrypoint: ["bash", "./docker/services/monolith.sh"]
build: ./ build: ./docker
volumes: volumes:
- type: bind - type: bind
source: ./ source: ./
@ -21,7 +21,7 @@ services:
container_name: dendrite_client_api_proxy container_name: dendrite_client_api_proxy
hostname: client_api_proxy hostname: client_api_proxy
entrypoint: ["bash", "./docker/services/client-api-proxy.sh"] entrypoint: ["bash", "./docker/services/client-api-proxy.sh"]
build: ./ build: ./docker
volumes: volumes:
- type: bind - type: bind
source: ./ source: ./
@ -41,7 +41,7 @@ services:
container_name: dendrite_client_api container_name: dendrite_client_api
hostname: client_api hostname: client_api
entrypoint: ["bash", "./docker/services/client-api.sh"] entrypoint: ["bash", "./docker/services/client-api.sh"]
build: ./ build: ./docker
volumes: volumes:
- type: bind - type: bind
source: ./ source: ./
@ -58,7 +58,7 @@ services:
container_name: dendrite_media_api container_name: dendrite_media_api
hostname: media_api hostname: media_api
entrypoint: ["bash", "./docker/services/media-api.sh"] entrypoint: ["bash", "./docker/services/media-api.sh"]
build: ./ build: ./docker
volumes: volumes:
- type: bind - type: bind
source: ./ source: ./
@ -74,7 +74,7 @@ services:
container_name: dendrite_public_rooms_api container_name: dendrite_public_rooms_api
hostname: public_rooms_api hostname: public_rooms_api
entrypoint: ["bash", "./docker/services/public-rooms-api.sh"] entrypoint: ["bash", "./docker/services/public-rooms-api.sh"]
build: ./ build: ./docker
volumes: volumes:
- type: bind - type: bind
source: ./ source: ./
@ -90,7 +90,7 @@ services:
container_name: dendrite_sync_api container_name: dendrite_sync_api
hostname: sync_api hostname: sync_api
entrypoint: ["bash", "./docker/services/sync-api.sh"] entrypoint: ["bash", "./docker/services/sync-api.sh"]
build: ./ build: ./docker
volumes: volumes:
- type: bind - type: bind
source: ./ source: ./
@ -106,7 +106,7 @@ services:
container_name: dendrite_room_server container_name: dendrite_room_server
hostname: room_server hostname: room_server
entrypoint: ["bash", "./docker/services/room-server.sh"] entrypoint: ["bash", "./docker/services/room-server.sh"]
build: ./ build: ./docker
volumes: volumes:
- type: bind - type: bind
source: ./ source: ./
@ -122,7 +122,7 @@ services:
container_name: dendrite_federation_api_proxy container_name: dendrite_federation_api_proxy
hostname: federation_api_proxy hostname: federation_api_proxy
entrypoint: ["bash", "./docker/services/federation-api-proxy.sh"] entrypoint: ["bash", "./docker/services/federation-api-proxy.sh"]
build: ./ build: ./docker
volumes: volumes:
- type: bind - type: bind
source: ./ source: ./
@ -141,7 +141,7 @@ services:
container_name: dendrite_federation_api container_name: dendrite_federation_api
hostname: federation_api hostname: federation_api
entrypoint: ["bash", "./docker/services/federation-api.sh"] entrypoint: ["bash", "./docker/services/federation-api.sh"]
build: ./ build: ./docker
volumes: volumes:
- type: bind - type: bind
source: ./ source: ./
@ -157,7 +157,7 @@ services:
container_name: dendrite_federation_sender container_name: dendrite_federation_sender
hostname: federation_sender hostname: federation_sender
entrypoint: ["bash", "./docker/services/federation-sender.sh"] entrypoint: ["bash", "./docker/services/federation-sender.sh"]
build: ./ build: ./docker
volumes: volumes:
- type: bind - type: bind
source: ./ source: ./