diff --git a/README.md b/README.md index 1642810..b6a3d80 100644 --- a/README.md +++ b/README.md @@ -13,15 +13,25 @@ services: phoneedit: container_name: phoneedit image: ghcr.io/shashinma/phoneedit:latest + restart: unless-stopped build: context: . dockerfile: Dockerfile ports: - - 5000:8080 + - :8080 + networks: + phoneedit_net: + ipv4_address: environment: ASPNETCORE_ENVIRONMENT: Production ConnectionStrings__IdentityContext: DataSource=IdentityContext.db;Cache=Shared ConnectionStrings__PhoneBookContext: Server=;Database=;user=;password= - DefaultUser__Username: your_username - DefaultUser__Password: your_password + DefaultUser__Username: + DefaultUser__Password: +networks: + phoneedit_net: + driver: bridge + ipam: + config: + - subnet: / ```