Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
shashinma authored Jan 22, 2024
1 parent 5bbcf7b commit 7ffe834
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
- <container_port>:8080
networks:
phoneedit_net:
ipv4_address: <ip_address>
environment:
ASPNETCORE_ENVIRONMENT: Production
ConnectionStrings__IdentityContext: DataSource=IdentityContext.db;Cache=Shared
ConnectionStrings__PhoneBookContext: Server=<mysql_server_ip>;Database=<mysql_db_name>;user=<username>;password=<password>
DefaultUser__Username: your_username
DefaultUser__Password: your_password
DefaultUser__Username: <your_username>
DefaultUser__Password: <your_password>
networks:
phoneedit_net:
driver: bridge
ipam:
config:
- subnet: <subnet_ip>/<subnet_mask>
```

0 comments on commit 7ffe834

Please sign in to comment.