Files
scratchbox/docker-compose.example.yml
s1d3sw1ped bc9077660b
CI / Go Tests (push) Failing after 9s
CI / Build (push) Successful in 9s
Format / gofmt (push) Successful in 7s
Release Artifacts / Validate release tag (push) Successful in 1s
Release Artifacts / Build and release executables (push) Failing after 8s
Release Artifacts / Build and release Docker image (push) Has been skipped
Add example environment configuration and Docker Compose setup
- Introduced a new `.env.example` file to provide a template for environment variables used by the Scratchbox server.
- Added a `docker-compose.example.yml` file to facilitate easy deployment of the Scratchbox service with Docker.
- Updated `docker-entrypoint.sh` to enforce environment variable settings for server configuration.
- Removed the generation of a config key file from the workflow, simplifying the configuration process.
- Adjusted the README.md to reflect changes in configuration management and usage instructions.
2026-06-01 04:36:53 -05:00

11 lines
210 B
YAML

services:
scratchbox:
image: git.s1d3sw1ped.com/s1d3sw1ped/scratchbox:latest
env_file:
- .env
ports:
- "8080:8080"
volumes:
- ./docker-data:/data
restart: unless-stopped