diff --git a/admin/docker-compose.override.yml b/admin/docker-compose.override.yml deleted file mode 100644 index 4b2dde8c6f..0000000000 --- a/admin/docker-compose.override.yml +++ /dev/null @@ -1,65 +0,0 @@ -version: '3.4' - -services: - ####################################################### - # FRONTEND ############################################ - ####################################################### - frontend: - # name the image so that it cannot be found in a DockerHub repository, otherwise it will not be built locally from the 'dockerfile' but pulled from there - image: it4c/frontend:local-development - build: - target: development - ports: - # development server port - - 24678:24678 - environment: - - NODE_ENV=development - volumes: - # This makes sure the docker container has its own node modules. - # Therefore it is possible to have a different node version on the host machine - - frontend_node_modules:/app/node_modules - # bind the local folder to the docker to allow live reload - - ./:/app - - ####################################################### - # STORYBOOK ########################################### - ####################################################### - storybook: - # name the image so that it cannot be found in a DockerHub repository, otherwise it will not be built locally from the 'dockerfile' but pulled from there - image: it4c/frontend:local-storybook - build: - target: storybook - ports: - - 6006:6006 - environment: - - NODE_ENV=development - volumes: - # This makes sure the docker container has its own node modules. - # Therefore it is possible to have a different node version on the host machine - - storybook_node_modules:/app/node_modules - # bind the local folder to the docker to allow live reload - - ./:/app - - ####################################################### - # DOCUMENTATION ####################################### - ####################################################### - documentation: - # name the image so that it cannot be found in a DockerHub repository, otherwise it will not be built locally from the 'dockerfile' but pulled from there - image: it4c/frontend:local-documentation - build: - target: documentation - ports: - - 8080:8080 - environment: - - NODE_ENV=development - volumes: - # This makes sure the docker container has its own node modules. - # Therefore it is possible to have a different node version on the host machine - - documentation_node_modules:/app/node_modules - # bind the local folder to the docker to allow live reload - - ./:/app - -volumes: - frontend_node_modules: - storybook_node_modules: - documentation_node_modules: diff --git a/admin/docker-compose.yml b/admin/docker-compose.yml deleted file mode 100644 index a084ff0a59..0000000000 --- a/admin/docker-compose.yml +++ /dev/null @@ -1,30 +0,0 @@ -version: '3.4' - -services: - ####################################################### - # FRONTEND ############################################ - ####################################################### - frontend: - # name the image so that it cannot be found in a DockerHub repository, otherwise it will not be built locally from the 'dockerfile' but pulled from there - image: it4c/frontend:local-production - build: - context: . - target: production - networks: - - external-net - - internal-net - ports: - - 3000:3000 - environment: - # Envs used in Dockerfile - # - DOCKER_WORKDIR="/app" - # - PORT=3000 - # - BUILD_DATE="1970-01-01T00:00:00.00Z" - # - BUILD_VERSION="0.0.0.0" - # - BUILD_COMMIT="0000000" - - NODE_ENV=production - -networks: - external-net: - internal-net: - internal: true diff --git a/backend/docker-compose.override.yml b/backend/docker-compose.override.yml deleted file mode 100644 index e6de57d442..0000000000 --- a/backend/docker-compose.override.yml +++ /dev/null @@ -1,42 +0,0 @@ -version: '3.4' - -services: - ####################################################### - # BACKEND ############################################# - ####################################################### - backend: - # name the image so that it cannot be found in a DockerHub repository, otherwise it will not be built locally from the 'dockerfile' but pulled from there - image: it4c/backend:local-development - build: - target: development - environment: - - NODE_ENV=development - volumes: - # This makes sure the docker container has its own node modules. - # Therefore it is possible to have a different node version on the host machine - - backend_node_modules:/server/node_modules - # bind the local folder to the docker to allow live reload - - ./:/server - - ####################################################### - # DOCUMENTATION ####################################### - ####################################################### - documentation: - # name the image so that it cannot be found in a DockerHub repository, otherwise it will not be built locally from the 'dockerfile' but pulled from there - image: it4c/backend:local-documentation - build: - target: documentation - ports: - - 8080:8080 - environment: - - NODE_ENV=development - volumes: - # This makes sure the docker container has its own node modules. - # Therefore it is possible to have a different node version on the host machine - - documentation_node_modules:/app/node_modules - # bind the local folder to the docker to allow live reload - - ./:/app - -volumes: - backend_node_modules: - documentation_node_modules: diff --git a/backend/docker-compose.yml b/backend/docker-compose.yml deleted file mode 100644 index 08583c9075..0000000000 --- a/backend/docker-compose.yml +++ /dev/null @@ -1,30 +0,0 @@ -version: '3.4' - -services: - ####################################################### - # BACKEND ############################################# - ####################################################### - backend: - # name the image so that it cannot be found in a DockerHub repository, otherwise it will not be built locally from the 'dockerfile' but pulled from there - image: it4c/backend:local-production - build: - context: . - target: production - networks: - - external-net - - internal-net - ports: - - 4000:4000 - environment: - # Envs used in Dockerfile - # - DOCKER_WORKDIR="/server" - # - PORT=4000 - # - BUILD_DATE="1970-01-01T00:00:00.00Z" - # - BUILD_VERSION="0.0.0.0" - # - BUILD_COMMIT="0000000" - - NODE_ENV=production - -networks: - external-net: - internal-net: - internal: true diff --git a/frontend/docker-compose.override.yml b/frontend/docker-compose.override.yml deleted file mode 100644 index 4b2dde8c6f..0000000000 --- a/frontend/docker-compose.override.yml +++ /dev/null @@ -1,65 +0,0 @@ -version: '3.4' - -services: - ####################################################### - # FRONTEND ############################################ - ####################################################### - frontend: - # name the image so that it cannot be found in a DockerHub repository, otherwise it will not be built locally from the 'dockerfile' but pulled from there - image: it4c/frontend:local-development - build: - target: development - ports: - # development server port - - 24678:24678 - environment: - - NODE_ENV=development - volumes: - # This makes sure the docker container has its own node modules. - # Therefore it is possible to have a different node version on the host machine - - frontend_node_modules:/app/node_modules - # bind the local folder to the docker to allow live reload - - ./:/app - - ####################################################### - # STORYBOOK ########################################### - ####################################################### - storybook: - # name the image so that it cannot be found in a DockerHub repository, otherwise it will not be built locally from the 'dockerfile' but pulled from there - image: it4c/frontend:local-storybook - build: - target: storybook - ports: - - 6006:6006 - environment: - - NODE_ENV=development - volumes: - # This makes sure the docker container has its own node modules. - # Therefore it is possible to have a different node version on the host machine - - storybook_node_modules:/app/node_modules - # bind the local folder to the docker to allow live reload - - ./:/app - - ####################################################### - # DOCUMENTATION ####################################### - ####################################################### - documentation: - # name the image so that it cannot be found in a DockerHub repository, otherwise it will not be built locally from the 'dockerfile' but pulled from there - image: it4c/frontend:local-documentation - build: - target: documentation - ports: - - 8080:8080 - environment: - - NODE_ENV=development - volumes: - # This makes sure the docker container has its own node modules. - # Therefore it is possible to have a different node version on the host machine - - documentation_node_modules:/app/node_modules - # bind the local folder to the docker to allow live reload - - ./:/app - -volumes: - frontend_node_modules: - storybook_node_modules: - documentation_node_modules: diff --git a/frontend/docker-compose.yml b/frontend/docker-compose.yml deleted file mode 100644 index a084ff0a59..0000000000 --- a/frontend/docker-compose.yml +++ /dev/null @@ -1,30 +0,0 @@ -version: '3.4' - -services: - ####################################################### - # FRONTEND ############################################ - ####################################################### - frontend: - # name the image so that it cannot be found in a DockerHub repository, otherwise it will not be built locally from the 'dockerfile' but pulled from there - image: it4c/frontend:local-production - build: - context: . - target: production - networks: - - external-net - - internal-net - ports: - - 3000:3000 - environment: - # Envs used in Dockerfile - # - DOCKER_WORKDIR="/app" - # - PORT=3000 - # - BUILD_DATE="1970-01-01T00:00:00.00Z" - # - BUILD_VERSION="0.0.0.0" - # - BUILD_COMMIT="0000000" - - NODE_ENV=production - -networks: - external-net: - internal-net: - internal: true diff --git a/presenter/docker-compose.override.yml b/presenter/docker-compose.override.yml deleted file mode 100644 index 4b2dde8c6f..0000000000 --- a/presenter/docker-compose.override.yml +++ /dev/null @@ -1,65 +0,0 @@ -version: '3.4' - -services: - ####################################################### - # FRONTEND ############################################ - ####################################################### - frontend: - # name the image so that it cannot be found in a DockerHub repository, otherwise it will not be built locally from the 'dockerfile' but pulled from there - image: it4c/frontend:local-development - build: - target: development - ports: - # development server port - - 24678:24678 - environment: - - NODE_ENV=development - volumes: - # This makes sure the docker container has its own node modules. - # Therefore it is possible to have a different node version on the host machine - - frontend_node_modules:/app/node_modules - # bind the local folder to the docker to allow live reload - - ./:/app - - ####################################################### - # STORYBOOK ########################################### - ####################################################### - storybook: - # name the image so that it cannot be found in a DockerHub repository, otherwise it will not be built locally from the 'dockerfile' but pulled from there - image: it4c/frontend:local-storybook - build: - target: storybook - ports: - - 6006:6006 - environment: - - NODE_ENV=development - volumes: - # This makes sure the docker container has its own node modules. - # Therefore it is possible to have a different node version on the host machine - - storybook_node_modules:/app/node_modules - # bind the local folder to the docker to allow live reload - - ./:/app - - ####################################################### - # DOCUMENTATION ####################################### - ####################################################### - documentation: - # name the image so that it cannot be found in a DockerHub repository, otherwise it will not be built locally from the 'dockerfile' but pulled from there - image: it4c/frontend:local-documentation - build: - target: documentation - ports: - - 8080:8080 - environment: - - NODE_ENV=development - volumes: - # This makes sure the docker container has its own node modules. - # Therefore it is possible to have a different node version on the host machine - - documentation_node_modules:/app/node_modules - # bind the local folder to the docker to allow live reload - - ./:/app - -volumes: - frontend_node_modules: - storybook_node_modules: - documentation_node_modules: diff --git a/presenter/docker-compose.yml b/presenter/docker-compose.yml deleted file mode 100644 index a084ff0a59..0000000000 --- a/presenter/docker-compose.yml +++ /dev/null @@ -1,30 +0,0 @@ -version: '3.4' - -services: - ####################################################### - # FRONTEND ############################################ - ####################################################### - frontend: - # name the image so that it cannot be found in a DockerHub repository, otherwise it will not be built locally from the 'dockerfile' but pulled from there - image: it4c/frontend:local-production - build: - context: . - target: production - networks: - - external-net - - internal-net - ports: - - 3000:3000 - environment: - # Envs used in Dockerfile - # - DOCKER_WORKDIR="/app" - # - PORT=3000 - # - BUILD_DATE="1970-01-01T00:00:00.00Z" - # - BUILD_VERSION="0.0.0.0" - # - BUILD_COMMIT="0000000" - - NODE_ENV=production - -networks: - external-net: - internal-net: - internal: true