Skip to content
This repository has been archived by the owner on Mar 2, 2025. It is now read-only.

Commit

Permalink
Change container names in docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
robiworks committed Dec 31, 2021
1 parent f43cb0e commit eb93b30
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
build: ./frontend # Path to Dockerfile
ports: # Port binding to host from Docker container
- "8080:80" # Bind port 8080 of host to 80 of container
container_name: frontend-docker
container_name: ng-frontend
restart: always
links:
- backend
Expand All @@ -17,12 +17,12 @@ services:
build: ./backend
ports:
- "5000:5000"
container_name: backend-docker
container_name: ng-backend
restart: always
links:
- database

database:
build: ./database
container_name: database-docker
container_name: ng-database
restart: always

0 comments on commit eb93b30

Please sign in to comment.