aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--docker-compose.yml2
-rw-r--r--docker/README.md6
-rw-r--r--test/integration/docker/docker-compose.yml1
-rwxr-xr-xtest/integration/docker/test.sh2
4 files changed, 3 insertions, 8 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
index 70de7e0..bc71c04 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -1,5 +1,3 @@
-version: '3'
-
services:
cgitize:
build:
diff --git a/docker/README.md b/docker/README.md
index ec7f89d..9ce982f 100644
--- a/docker/README.md
+++ b/docker/README.md
@@ -41,8 +41,6 @@ Compose
Here's an example docker-compose.yml file:
- version: '3'
-
services:
cgitize:
environment:
@@ -50,13 +48,13 @@ Here's an example docker-compose.yml file:
SCHEDULE: '0 */3 * * *'
# Set CGITIZE_{GITHUB,BITBUCKET,GITLAB}_{USERNAME,TOKEN} variables
# here or in the config file.
- image: egortensin/cgitize:5
+ image: egortensin/cgitize:6
restart: unless-stopped
volumes:
- ./example.toml:/etc/cgitize/cgitize.toml:ro
- /srv/volumes/cgitize:/mnt/cgitize
frontend:
- image: egortensin/cgitize-frontend:5
+ image: egortensin/cgitize-frontend:6
ports:
- '127.0.0.1:80:80'
restart: unless-stopped
diff --git a/test/integration/docker/docker-compose.yml b/test/integration/docker/docker-compose.yml
index 3a00971..703dbd0 100644
--- a/test/integration/docker/docker-compose.yml
+++ b/test/integration/docker/docker-compose.yml
@@ -1,4 +1,3 @@
-version: '3'
services:
git_server:
build:
diff --git a/test/integration/docker/test.sh b/test/integration/docker/test.sh
index 15ffb3e..1e671c0 100755
--- a/test/integration/docker/test.sh
+++ b/test/integration/docker/test.sh
@@ -165,7 +165,7 @@ docker_build() {
echo Building Docker images
echo ----------------------------------------------------------------------
- $docker_compose build --progress plain
+ $docker_compose --progress plain build
}
docker_cleanup() {