diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..8863892 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,17 @@ +version: '3.3' +services: + elt: + build: + context: . + dockerfile: ./Dockerfile + environment: + - eltLogin=${ELT_LOGIN} + - eltPassword=${ELT_PASSWORD} + restart: always + networks: + - calc_network + +networks: + calc_network: + external: + name: calc_network \ No newline at end of file