diff options
author | Raphael Kabo <raphaelkabo@hey.com> | 2023-05-12 16:54:06 +0100 |
---|---|---|
committer | Raphael Kabo <raphaelkabo@hey.com> | 2023-05-12 16:54:06 +0100 |
commit | 116acdbd18fe26ddf4748e49f5fbdceaee720eaa (patch) | |
tree | 655da1f39db764a6aaae428b63cf7a02b6b54381 /docker-compose.yml | |
parent | 240195f0ca3cbc0af2f084a8beb0d2f11fe48ec5 (diff) |
More linting
Diffstat (limited to 'docker-compose.yml')
-rw-r--r-- | docker-compose.yml | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 44026c8..334bc3d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,16 +1,16 @@ -version: '3' +version: "3" volumes: - mongodb_data_db: + mongodb_data_db: services: - gathio: - build: . - links: - - mongo - ports: - - 3000:3000 - mongo: - image: mongo:latest - volumes: - - mongodb_data_db:/data/db
\ No newline at end of file + gathio: + build: . + links: + - mongo + ports: + - 3000:3000 + mongo: + image: mongo:latest + volumes: + - mongodb_data_db:/data/db |