Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ services:
- ./nowait-app-admin-api:/app
restart: always

nowait-app-user-api:
build:
context: nowait-app-user-api
dockerfile: Dockerfile
container_name: nowait-app-user-api
ports:
- "8081:8081"
depends_on:
- mysql
volumes:
- ./nowait-app-user-api:/app
restart: always
# nowait-app-user-api:
# build:
# context: nowait-app-user-api
# dockerfile: Dockerfile
# container_name: nowait-app-user-api
# ports:
# - "8081:8081"
# depends_on:
# - mysql
# volumes:
# - ./nowait-app-user-api:/app
# restart: always

volumes:
mysql_data:
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,3 @@ public static void main(String[] args) {
org.springframework.boot.SpringApplication.run(ApiAdminApplication.class, args);
}
}