diff options
author | John L. Villalovos <john@sodarock.com> | 2021-12-26 14:45:06 -0800 |
---|---|---|
committer | John L. Villalovos <john@sodarock.com> | 2021-12-26 14:45:06 -0800 |
commit | 79321aa0e33f0f4bd2ebcdad47769a1a6e81cba8 (patch) | |
tree | a4f553fc4485e0da993ee5c695a3da27cf84dbcc | |
parent | ee66f4a777490a47ad915a3014729a9720bf909b (diff) | |
download | gitlab-jlvillal/docker_compose.tar.gz |
chore: update version in docker-compose.ymljlvillal/docker_compose
When running with docker-compose on Ubuntu 20.04 I got the error:
$ docker-compose up
ERROR: The Compose file './docker-compose.yml' is invalid because:
networks.gitlab-network value Additional properties are not allowed ('name' was unexpected)
Changing the version in the docker-compose.yml file fro '3' to '3.5'
resolved the issue.
-rw-r--r-- | tests/functional/fixtures/docker-compose.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/fixtures/docker-compose.yml b/tests/functional/fixtures/docker-compose.yml index 134f266..e4869fb 100644 --- a/tests/functional/fixtures/docker-compose.yml +++ b/tests/functional/fixtures/docker-compose.yml @@ -1,4 +1,4 @@ -version: '3' +version: '3.5' networks: gitlab-network: |