modulepackage
2.4.9
Repository: https://github.com/compose-spec/compose-go.git
Documentation: pkg.go.dev
# README
compose-go
Go reference library for parsing and loading Compose files as specified by the Compose specification.
Usage
package main
import (
"context"
"fmt"
"log"
"github.com/compose-spec/compose-go/v2/cli"
)
func main() {
composeFilePath := "docker-compose.yml"
projectName := "my_project"
ctx := context.Background()
options, err := cli.NewProjectOptions(
[]string{composeFilePath},
cli.WithOsEnv,
cli.WithDotEnv,
cli.WithName(projectName),
)
if err != nil {
log.Fatal(err)
}
project, err := options.LoadProject(ctx)
if err != nil {
log.Fatal(err)
}
// Use the MarshalYAML method to get YAML representation
projectYAML, err := project.MarshalYAML()
if err != nil {
log.Fatal(err)
}
fmt.Println(string(projectYAML))
}
Build the library
To build the library, you could either use the makefile
make build
or use the go build command
go build ./...
Run the tests
You can run the tests with the makefile
make test
or with the go test command
gotestsum ./...
Other helpful make commands
Run the linter
make lint
Check the license headers
make check_license
Check the compose-spec.json
file is sync with the compose-spec
repository
make check_compose_spec
Used by
# Packages
No description provided by the author
No description provided by the author
No description provided by the author
Package dotenv is a go port of the ruby dotenv library (https://github.com/bkeepers/dotenv)
Examples/readme can be found on the github page at https://github.com/joho/godotenv
The TL;DR is that you make a .env file that looks something like
SOME_ENV_VAR=somevalue
and then in your go code you can call
godotenv.Load()
and all the env vars declared in .env will be available through os.Getenv("SOME_ENV_VAR").
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author