Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/antoniocaccamo/spring-boot-oauth2
https://github.com/antoniocaccamo/spring-boot-oauth2
oauth2 oauth2-authentication oauth2-resource-server spring-boot
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/antoniocaccamo/spring-boot-oauth2
- Owner: antoniocaccamo
- License: gpl-3.0
- Created: 2019-06-20T12:35:18.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-07-07T21:44:43.000Z (over 1 year ago)
- Last Synced: 2024-11-24T12:15:09.383Z (2 months ago)
- Topics: oauth2, oauth2-authentication, oauth2-resource-server, spring-boot
- Language: Java
- Size: 40 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# spring-boot-oauth2
## Docker
1. docker swarm init
2. docker stack deploy -c docker-compose.yml oauth2-lab
```
docker stack ls # List stacks or apps
docker swarm init # init swarm app
docker stack deploy -c # Run the specified Compose file
docker service ls # List running services associated with an app
docker service ps # List tasks associated with an app
docker inspect # Inspect task or container
docker container ls -q # List container IDs
docker stack rm # Tear down an application
docker swarm leave --force # Take down a single node swarm from the manager
```