docker: fix the Docker quickstart not working with Ubuntu 18.04.
Fix the quickstart command in the README not working for Ubuntu 18.04. This was because the Docker Compose file was set to version 3.7, but Ubuntu 18.04 ships an older version of Docker Compose that only supports version 3.4.
This commit is contained in:
@@ -5,8 +5,18 @@
|
||||
#
|
||||
# $ docker-compose -f config/docker/docker-compose.simple.yaml up
|
||||
# $ docker-compose -f config/docker/docker-compose.simple.yaml down
|
||||
#
|
||||
# References:
|
||||
#
|
||||
# * https://docs.docker.com/get-docker/
|
||||
# * https://docs.docker.com/compose/install/
|
||||
# * https://docs.docker.com/compose/compose-file/compose-versioning
|
||||
# * https://docs.docker.com/compose/release-notes
|
||||
|
||||
# Version 3.4 is the latest version that is supported by the version of Docker
|
||||
# Compose shipped with Ubuntu 18.04 LTS (version 1.17.4).
|
||||
version: "3.4"
|
||||
|
||||
version: "3.7"
|
||||
services:
|
||||
danbooru:
|
||||
# image: evazion/danbooru
|
||||
|
||||
Reference in New Issue
Block a user