https://github.com/sproutmaster/deployment-scripts
Scripts I use for deploying infra systems
https://github.com/sproutmaster/deployment-scripts
Last synced: 3 months ago
JSON representation
Scripts I use for deploying infra systems
- Host: GitHub
- URL: https://github.com/sproutmaster/deployment-scripts
- Owner: sproutmaster
- Created: 2024-03-04T03:18:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-21T20:49:10.000Z (about 1 year ago)
- Last Synced: 2025-12-28T15:21:11.619Z (6 months ago)
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Deployment Scripts
This is a repo to store deployment scripts I use. Traefik acts as a reverse proxy for all services and other containers are connected through docker network `traefik`
### To spin up traefik:
```
docker compose -f traefik.yaml up -d
```
### For everything else:
```
docker compose -f .yaml up -d
```
### Note
If you've changed stuff after deploying a container, add arguments to docker as needed when re-deploying
```
--force-recreate --build
```