Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```