diff options
| -rw-r--r-- | Makefile.toml | 6 | ||||
| -rw-r--r-- | docker-compose.yml | 11 |
2 files changed, 9 insertions, 8 deletions
diff --git a/Makefile.toml b/Makefile.toml index e133cbe..6931b56 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -93,8 +93,9 @@ command = "docker" args = [ "run", "--name", "Whirlsplash", - # API Distributor Hub + # API Distributor Hub "-p", "8000:80", "-p", "6650:6650", "-p", "5673:5673", + "-v", "/var/lib/whirl:/.whirl", "whirlsplash/whirl" ] @@ -106,8 +107,9 @@ args = [ "run", "-it", "--name", "Whirlsplash", - # API Distributor Hub + # API Distributor Hub "-p", "8000:80", "-p", "6650:6650", "-p", "5673:5673", + "-v", "/var/lib/whirl:/.whirl", "--env", "DISABLE_PROMPT=false", "whirlsplash/whirl" ] diff --git a/docker-compose.yml b/docker-compose.yml index 214dcf8..3c8fd88 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,11 +1,10 @@ -version: '3.3' +version: "3.3" services: whirl: ports: - - '8080:80' - - '6650:6650' - - '5673:5673' - container_name: Whirlsplash - image: whirlsplash/whirl + - "8080:80" + - "6650:6650" + - "5673:5673" volumes: - ./.whirl-data:/.whirl + image: whirlsplash/whirl |