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
This commit is contained in:
parent
3834bb4ec9
commit
2a31f54e8b
1 changed files with 6 additions and 7 deletions
|
|
@ -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
|
||||
external: true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue