Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,11 @@
/tmp
nohup.out
vendor/

# Podman-specific
.podman-machine-*
podman-compose.override.yml
.env.podman

# VS Code + Podman local settings
.vscode/settings.local.json
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -954,6 +954,24 @@ $ git clone https://github.com/Shopify/semian.git
$ cd semian
```

## Alternative: Using Podman

If you prefer Podman over Docker, see our [Podman setup guide](docs/PODMAN.md).

Quick start with Podman:
```bash
# Initialize everything
./scripts/podman-setup.sh init

# Run tests
./scripts/podman-setup.sh test

# Get a development shell
./scripts/podman-setup.sh shell
```

The Podman setup provides the same functionality as the Docker setup with full backward compatibility.

## Visual Studio Code

- Open semian in vscode
Expand Down
Loading