diff --git a/docker-compose.yml b/docker-compose.yml index b862de1..e634083 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,20 +3,10 @@ version: "3.8" services: faved: image: denho/faved:latest - networks: - - faved_net - # Publish ports directly (Swarm routing mesh) # Faved's official compose supports PORT and SSL_PORT defaults. 【2-51ff7c】 ports: - - target: 80 - published: 8282 - protocol: tcp - mode: ingress - - target: 443 - published: 8443 - protocol: tcp - mode: ingress + - 8282:80 volumes: # Required persistence (bookmarks, tags, users, etc.) 【1-fe9697】【3-512901】 @@ -32,9 +22,4 @@ services: condition: on-failure placement: constraints: - - node.platform.os == linux - -networks: - faved_net: - driver: overlay - attachable: true \ No newline at end of file + - node.platform.os == linux \ No newline at end of file