From 2a31f54e8b006e58d2b3ee2d5b57d9699db97734 Mon Sep 17 00:00:00 2001 From: Zachary Laughlin <33877007+ZaxLofful@users.noreply.github.com> Date: Mon, 10 Jul 2023 01:36:20 -0700 Subject: [PATCH] Do a little cleaning There are a few inconsistencies in the way code is written and also a volume that isn't needed. There is also a spacing problem for the .env file, which docker-compose hates --- docker-compose.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index e265cb6..8ae6623 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,4 +1,4 @@ -version: "3.8" +version: "3.9" services: pfdb: @@ -36,10 +36,10 @@ services: - "$PATHFINDER_SOCKET_HOST" restart: always pf: - hostname: "pathfinder" + hostname: pathfinder image: ghcr.io/goryn-clade/pathfinder:latest env_file: - - .env + - .env labels: - "traefik.enable=true" - "traefik.docker.network=web" @@ -68,8 +68,8 @@ services: - pf-socket restart: always traefik: - image: "traefik:v2.3" - container_name: "traefik" + image: traefik:v2.3 + container_name: traefik command: - "--log.level=ERROR" - "--api.insecure=true" @@ -95,10 +95,9 @@ services: restart: always volumes: - data: db_data: redis_data: networks: pf: web: - external: true \ No newline at end of file + external: true