docker-compose fix default port

This commit is contained in:
Vincent Agnano 2023-02-26 18:02:14 +01:00
parent 0995e0447c
commit 13a6d39f46
2 changed files with 8 additions and 2 deletions

View File

@ -0,0 +1,6 @@
version: "3"
services:
invidious:
ports:
- "127.0.0.1:3000:3000"

View File

@ -12,8 +12,8 @@ services:
context: . context: .
dockerfile: docker/Dockerfile dockerfile: docker/Dockerfile
restart: unless-stopped restart: unless-stopped
ports: expose:
- "127.0.0.1:3000:3000" - "3000"
environment: environment:
# Please read the following file for a comprehensive list of all available # Please read the following file for a comprehensive list of all available
# configuration options and their associated syntax: # configuration options and their associated syntax: