All checks were successful
Datadog Secrets Scanning / Datadog Static Analyzer (push) Successful in 9s
Datadog Software Composition Analysis / Datadog SBOM Generation and Upload (push) Successful in 15s
Datadog Static Analysis / Datadog Static Analyzer (push) Successful in 19s
Release / build (release) Successful in 39s
17 lines
284 B
Markdown
17 lines
284 B
Markdown
# Docker Compose Example
|
|
|
|
Below is an example `docker-compose.yml` file to deploy Foldsite using Docker Compose:
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
foldsite:
|
|
build: .
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- .:/app
|
|
environment:
|
|
- CONFIG_PATH=config.toml
|
|
```
|