Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Silence Deprecated Version Warning #1570

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker-compose.build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This configuration builds from Dockerfiles
# instead of pulling from opendronemap hub
version: '2.1'

services:
db:
build: ./db
Expand Down
1 change: 0 additions & 1 deletion docker-compose.dev.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '2.1'
services:
webapp:
entrypoint: /bin/bash -c "chmod +x /webodm/*.sh && /bin/bash -c \"/webodm/wait-for-postgres.sh db /webodm/wait-for-it.sh -t 0 broker:6379 -- /webodm/start.sh --create-default-pnode --setup-devenv\""
Expand Down
1 change: 0 additions & 1 deletion docker-compose.nodemicmac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# a default processing node instance. This is best for users
# who are just getting started with WebODM.

version: '2.1'
services:
webapp:
depends_on:
Expand Down
1 change: 0 additions & 1 deletion docker-compose.nodeodm.gpu.intel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# a default processing node instance. This is best for users
# who are just getting started with WebODM.

version: '2.1'
services:
webapp:
depends_on:
Expand Down
1 change: 0 additions & 1 deletion docker-compose.nodeodm.gpu.nvidia.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# a default processing node instance. This is best for users
# who are just getting started with WebODM.

version: '2.1'
services:
webapp:
depends_on:
Expand Down
1 change: 0 additions & 1 deletion docker-compose.nodeodm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# a default processing node instance. This is best for users
# who are just getting started with WebODM.

version: '2.1'
services:
webapp:
depends_on:
Expand Down
1 change: 0 additions & 1 deletion docker-compose.settings.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '2.1'
services:
webapp:
volumes:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.ssl-manual.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This configuration adds the volumes necessary for SSL manual setup
version: '2.1'

services:
webapp:
volumes:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.ssl.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This configuration adds support for SSL
version: '2.1'

volumes:
letsencrypt:
driver: local
Expand Down
1 change: 0 additions & 1 deletion docker-compose.worker-cpu.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '2.2'
services:
worker:
cpus: ${WO_WORKER_CPUS}
1 change: 0 additions & 1 deletion docker-compose.worker-memory.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '2.1'
services:
worker:
mem_limit: ${WO_WORKER_MEMORY}
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This configuration does not include a processing node
# Which makes for faster setup times
version: '2.1'

volumes:
dbdata:
appmedia:
Expand Down
Loading