1
0
mirror of https://github.com/erlang/docker-erlang-example.git synced 2025-07-30 22:43:04 +03:00

Use atom and not string for release name

This commit is contained in:
Lukas Larsson
2020-11-25 13:20:19 +01:00
parent 57d094067c
commit 2f7cb8e280
7 changed files with 7 additions and 7 deletions

View File

@ -2,7 +2,7 @@
{deps, [{jsone, "1.4.7"}, %% JSON Encode/Decode
{cowboy, "2.5.0"}]}. %% HTTP Server
{relx, [{release, {"dockerwatch", "1.0.0"}, [dockerwatch]},
{relx, [{release, {dockerwatch, "1.0.0"}, [dockerwatch]},
{vm_args, "config/vm.args"},
{sys_config, "config/sys.config"},
{dev_mode, true},

View File

@ -2,7 +2,7 @@
{deps, [{jsone, "1.4.7"}, %% JSON Encode/Decode
{cowboy, "2.5.0"}]}. %% HTTP Server
{relx, [{release, {"dockerwatch", "1.0.0"}, [dockerwatch]},
{relx, [{release, {dockerwatch, "1.0.0"}, [dockerwatch]},
{vm_args, "config/vm.args"},
{sys_config, "config/sys.config"},
{dev_mode, true},

View File

@ -2,7 +2,7 @@
{deps, [{jsone, "1.4.7"}, %% JSON Encode/Decode
{cowboy, "2.5.0"}]}. %% HTTP Server
{relx, [{release, {"dockerwatch", "1.0.0"}, [dockerwatch]},
{relx, [{release, {dockerwatch, "1.0.0"}, [dockerwatch]},
{vm_args_src, "config/vm.args.src"},
{sys_config_src, "config/sys.config.src"},
{dev_mode, true},

View File

@ -5,7 +5,7 @@
{prometheus_process_collector,"1.4.0"},
{prometheus_cowboy,"0.1.4"}]}.
{relx, [{release, {"dockerwatch", "1.0.0"}, [dockerwatch]},
{relx, [{release, {dockerwatch, "1.0.0"}, [dockerwatch]},
{vm_args, "config/vm.args"},
{sys_config, "config/sys.config"},
{dev_mode, true},

View File

@ -2,7 +2,7 @@
{deps, [{jsone, "1.4.7"}, %% JSON Encode/Decode
{cowboy, "2.5.0"}]}. %% HTTP Server
{relx, [{release, {"dockerwatch", "1.0.0"}, [dockerwatch]},
{relx, [{release, {dockerwatch, "1.0.0"}, [dockerwatch]},
{vm_args, "config/vm.args"},
{sys_config, "config/sys.config"},
{dev_mode, true},